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