11 lines
319 B
C#
11 lines
319 B
C#
namespace ErsatzTV.Core.Domain;
|
|
|
|
public class PlayoutItemGraphicsElement
|
|
{
|
|
public int PlayoutItemId { get; set; }
|
|
public PlayoutItem PlayoutItem { get; set; }
|
|
public int? GraphicsElementId { get; set; }
|
|
public GraphicsElement GraphicsElement { get; set; }
|
|
public string Variables { get; set; }
|
|
}
|