mirror of
https://github.com/BlossomiShymae/Needlework.Net.git
synced 2025-12-07 02:30:48 +01:00
14 lines
311 B
C#
14 lines
311 B
C#
namespace Needlework.Net.DataModels
|
|
{
|
|
public class HextechDocsPost
|
|
{
|
|
public required string Path { get; init; }
|
|
|
|
public required string Title { get; init; }
|
|
|
|
public required string Excerpt { get; init; }
|
|
|
|
public string Url => $"https://hextechdocs.dev{Path}";
|
|
}
|
|
}
|