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.
20 lines
449 B
20 lines
449 B
using Destructurama.Attributed; |
|
|
|
namespace ErsatzTV.Core.Domain; |
|
|
|
public class PlayoutScheduleItemFillGroupIndex |
|
{ |
|
public int Id { get; set; } |
|
|
|
public int PlayoutId { get; set; } |
|
|
|
[NotLogged] |
|
public Playout Playout { get; set; } |
|
|
|
public int ProgramScheduleItemId { get; set; } |
|
|
|
[NotLogged] |
|
public ProgramScheduleItem ProgramScheduleItem { get; set; } |
|
|
|
public CollectionEnumeratorState EnumeratorState { get; set; } |
|
}
|
|
|