mirror of
https://github.com/azaion/annotations.git
synced 2026-04-23 02:36:30 +00:00
13 lines
303 B
C#
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; }
|
|
}
|