* update more libraries to dotnet 10 * fix dockerfiles * fix numeric types
13 lines
362 B
C#
13 lines
362 B
C#
using System.ComponentModel;
|
|
|
|
namespace ErsatzTV.Core.Api.ScriptedPlayout;
|
|
|
|
public record ContentCreatePlaylist
|
|
{
|
|
[Description("Unique name used to reference this content throughout the scripted schedule")]
|
|
public required string Key { get; set; }
|
|
|
|
[Description("List of playlist items")]
|
|
public required List<PlaylistItem> Items { get; set; }
|
|
}
|