* log viewer improvements * playout detail table improvements * schedule items table improvements * remove schedule items pager
7 lines
168 B
C#
7 lines
168 B
C#
using System.Collections.Generic;
|
|
|
|
namespace ErsatzTV.Application.Logs
|
|
{
|
|
public record PagedLogEntriesViewModel(int TotalCount, List<LogEntryViewModel> Page);
|
|
}
|