You've already forked onecmonitor
mirror of
https://github.com/akpaevj/onecmonitor.git
synced 2026-06-19 22:59:58 +02:00
17 lines
580 B
C#
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; } = [];
|
|
}
|
|
}
|