mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 17:26:30 +00:00
add repository with mysql and entities
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
namespace Azaion.Repository.DTO;
|
||||
|
||||
public class ConnectionStrings
|
||||
{
|
||||
public string? FraudDb { get; set; }
|
||||
public string? FraudDbMsSql { get; set; }
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
namespace Azaion.Video.DTO;
|
||||
|
||||
public enum MediaStatusEnum
|
||||
{
|
||||
None = 0,
|
||||
Uploaded = 10,
|
||||
Annotating = 20,
|
||||
Annotated = 30
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user