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.
19 lines
649 B
19 lines
649 B
namespace ErsatzTV.Core.Scheduling; |
|
|
|
public class PlayoutBuildWarnings |
|
{ |
|
public void Merge(PlayoutBuildWarnings warnings) |
|
{ |
|
TailFillerTooLong += warnings.TailFillerTooLong; |
|
MidRollContentWithoutChapters += warnings.MidRollContentWithoutChapters; |
|
DurationFillerSkipped += warnings.DurationFillerSkipped; |
|
|
|
BlockItemSkippedEmptyCollection += warnings.BlockItemSkippedEmptyCollection; |
|
} |
|
|
|
public int TailFillerTooLong { get; set; } |
|
public int MidRollContentWithoutChapters { get; set; } |
|
public int DurationFillerSkipped { get; set; } |
|
|
|
public int BlockItemSkippedEmptyCollection { get; set; } |
|
}
|
|
|