1
0
mirror of https://github.com/akpaevj/onecmonitor.git synced 2026-06-19 22:59:58 +02:00
Files
onecmonitor/onecmonitor-server/ViewModels/TechLogSeances/TechLogViewModel.cs
T
akpaev.e cd9542bd79 init
2025-03-29 01:33:55 +03:00

17 lines
580 B
C#

using OnecMonitor.Server.Models;
namespace OnecMonitor.Server.ViewModels.TechLogSeances
{
public class TechLogViewModel
{
public Guid SeanceId { get; set; }
public string Description { get; set; }
public List<TechLogFilter> TechLogFilters { get; set; } = [];
public string? Filter { get; set; }
public int PageSize { get; set; } = 50;
public int CurrentPage { get; set; } = 1;
public int PagesCount { get; set; }
public List<TechLogListItemViewModel> TjEvents { get; set; } = [];
}
}