9 lines
283 B
C#
9 lines
283 B
C#
|
|
namespace Brizco.Domain.MartenEntities.NewFeeds;
|
|||
|
|
|
|||
|
|
public class NewsFeed : MartenEntity
|
|||
|
|
{
|
|||
|
|
public string Content { get; set; } = string.Empty;
|
|||
|
|
public string Title { get; set; } = string.Empty;
|
|||
|
|
public bool IsPin { get; set; }
|
|||
|
|
public DateTime CreatedAt { get; set; }
|
|||
|
|
}
|