25 lines
479 B
C#
25 lines
479 B
C#
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<Medium>? Media { get; set; }
|
|
|
|
public List<object>? Preview { get; set; }
|
|
}
|