mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 21:46:30 +00:00
9 lines
298 B
C#
9 lines
298 B
C#
namespace Azaion.Common.Database;
|
|
|
|
public class AnnotationQueueRecord
|
|
{
|
|
public Guid Id { get; set; }
|
|
public DateTime DateTime { get; set; }
|
|
public AnnotationStatus Operation { get; set; }
|
|
public List<string> AnnotationNames { get; set; } = null!;
|
|
} |