using System.Linq.Expressions; using ErsatzTV.Core.Domain; namespace ErsatzTV.Application.Logs; public record GetRecentLogEntries(int PageNum, int PageSize) : IRequest { public Expression> SortExpression { get; set; } public Option SortDescending { get; set; } }