yavsc/src/Server/Services/BlogPostEdition.cs
Paul Schneider 45514010f2 REORG
2026-02-14 16:54:27 +00:00

13 lines
316 B
C#

using Yavsc.Models.Blog;
public class BlogPostEdition
{
public string Content { get; internal set; }
public string Title { get; internal set; }
public string Photo { get; internal set; }
internal static BlogPostEdition From(BlogPost blog)
{
throw new NotImplementedException();
}
}