namespace ErsatzTV.Core.Domain; public class GraphicsElement { public int Id { get; set; } public string Path { get; set; } public GraphicsElementKind Kind { get; set; } public List PlayoutItems { get; set; } public List PlayoutItemGraphicsElements { get; set; } }