using OF_DL.Models.Entities.Common; namespace OF_DL.Models.Entities.Posts; public class Medium { public long Id { get; set; } public string Type { get; set; } = ""; public bool CanView { get; set; } public string? Preview { get; set; } public Files? Files { get; set; } public VideoSources? VideoSources { get; set; } }