using OF_DL.Models.Entities.Common; namespace OF_DL.Models.Entities.Archived; public class ListItem { public long Id { get; set; } public DateTime PostedAt { get; set; } public Author? Author { get; set; } public string? Text { get; set; } public string? Price { get; set; } public bool IsOpened { get; set; } public bool IsArchived { get; set; } public List? Media { get; set; } public List? Preview { get; set; } }