* load fonts on demand * add new table * populate new table * edit and use multiple watermarks in deco * remove old field * update changelog
12 lines
271 B
C#
12 lines
271 B
C#
using ErsatzTV.Core.Domain.Scheduling;
|
|
|
|
namespace ErsatzTV.Core.Domain;
|
|
|
|
public class DecoWatermark
|
|
{
|
|
public int DecoId { get; set; }
|
|
public Deco Deco { get; set; }
|
|
public int WatermarkId { get; set; }
|
|
public ChannelWatermark Watermark { get; set; }
|
|
}
|