mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.3 KiB
29 lines
1.3 KiB
using ErsatzTV.Application.MediaCollections; |
|
using ErsatzTV.Application.MediaItems; |
|
using ErsatzTV.Core.Domain; |
|
using ErsatzTV.Core.Domain.Scheduling; |
|
|
|
namespace ErsatzTV.ViewModels; |
|
|
|
public class DecoEditViewModel |
|
{ |
|
public int DecoGroupId { get; set; } |
|
public string Name { get; set; } |
|
public DecoMode WatermarkMode { get; set; } |
|
public int? WatermarkId { get; set; } |
|
|
|
public DecoMode DefaultFillerMode { get; set; } |
|
public ProgramScheduleItemCollectionType DefaultFillerCollectionType { get; set; } |
|
public MediaCollectionViewModel DefaultFillerCollection { get; set; } |
|
public MultiCollectionViewModel DefaultFillerMultiCollection { get; set; } |
|
public SmartCollectionViewModel DefaultFillerSmartCollection { get; set; } |
|
public NamedMediaItemViewModel DefaultFillerMediaItem { get; set; } |
|
public bool DefaultFillerTrimToFit { get; set; } |
|
|
|
public DecoMode DeadAirFallbackMode { get; set; } |
|
public ProgramScheduleItemCollectionType DeadAirFallbackCollectionType { get; set; } |
|
public MediaCollectionViewModel DeadAirFallbackCollection { get; set; } |
|
public MultiCollectionViewModel DeadAirFallbackMultiCollection { get; set; } |
|
public SmartCollectionViewModel DeadAirFallbackSmartCollection { get; set; } |
|
public NamedMediaItemViewModel DeadAirFallbackMediaItem { get; set; } |
|
}
|
|
|