Files
annotations/Web/Azaion.Web/Azaion.Repository/Entities/Media.cs
T
2024-07-16 14:18:55 +03:00

13 lines
303 B
C#

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