Files
ersatztv/ErsatzTV.Core/Domain/ChannelGraphicsElement.cs
T
2026-07-22 22:11:45 +02:00

10 lines
257 B
C#

namespace ErsatzTV.Core.Domain;
public class ChannelGraphicsElement
{
public int ChannelId { get; set; }
public Channel Channel { get; set; }
public int GraphicsElementId { get; set; }
public GraphicsElement GraphicsElement { get; set; }
}