yavsc/src/Yavsc.Abstract/Blogspot/IBlog.cs
2025-02-08 20:06:24 +00:00

13 lines
258 B
C#

namespace Yavsc
{
public interface IBlogPost : ITrackedEntity, IIdentified<long>, ITitle
{
string AuthorId { get; set; }
string Content { get; set; }
string Photo { get; set; }
bool Visible { get; set; }
}
}