mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 10:06:30 +00:00
fde9a9f418
also restrict detections to be no bigger than in classes.json
18 lines
400 B
C#
18 lines
400 B
C#
namespace Azaion.Common.Database;
|
|
|
|
public class MediaFile
|
|
{
|
|
public string Name { get; set; } = null!;
|
|
public string LocalPath { get; set; } = null!;
|
|
public DateTime? ProcessedDate { get; set; }
|
|
public MediaDetectionStatus MediaDetectionStatus { get; set; } = MediaDetectionStatus.New;
|
|
}
|
|
|
|
public enum MediaDetectionStatus
|
|
{
|
|
None,
|
|
New,
|
|
Processing,
|
|
Processed,
|
|
Error
|
|
} |