using Azaion.Video.DTO; namespace Azaion.Repository.Entities; public class Media { public Guid Id { get; set; } public string Path { get; set; } = null!; public Guid? AnnotatorId { get; set; } public MediaStatusEnum Status { get; set; } public DateTime CreatedDate { get; set; } }