You've already forked onecmonitor
mirror of
https://github.com/akpaevj/onecmonitor.git
synced 2026-06-19 22:59:58 +02:00
13 lines
463 B
C#
13 lines
463 B
C#
namespace OnecMonitor.Server.ViewModels.TechLogSeances
|
|
{
|
|
public class TechLogSeancesIndexViewModel
|
|
{
|
|
public bool Enabled { get; set; } = false;
|
|
public int PageSize { get; set; } = 50;
|
|
public int CurrentPage { get; set; } = 1;
|
|
public int PagesCount { get; set; }
|
|
public List<TechLogSeancesListItemViewModel> Seances { get; set; } = new();
|
|
public bool RepositoryAvailable { get; set; }
|
|
}
|
|
}
|