7 lines
155 B
C#
7 lines
155 B
C#
using System;
|
|
|
|
namespace ErsatzTV.Application.Playouts
|
|
{
|
|
public record PlayoutItemViewModel(string Title, DateTimeOffset Start, string Duration);
|
|
}
|