Files
Needlework.Net/Needlework.Net/DataModels/HextechDocsPost.cs
2025-06-22 19:10:36 -05:00

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}";
}
}