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

11 lines
262 B
C#

using Azaion.Video.DTO;
namespace Azaion.Repository.DTO;
public class VideoDto
{
public Guid Id { get; set; }
public string Path { get; set; } = null!;
public MediaStatusEnum MediaStatus { get; set; }
public DateTime CreatedDate { get; set; }
}