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/TechLogSeancesListItemViewModel.cs
T
akpaev.e 5f80256b50 init
2023-01-27 20:58:44 +03:00

14 lines
491 B
C#

using OnecMonitor.Server.Models;
namespace OnecMonitor.Server.ViewModels.TechLogSeances
{
public class TechLogSeancesListItemViewModel
{
public Guid Id { get; set; }
public string Description { get; set; } = string.Empty;
public TechLogSeanceStartMode StartMode { get; set; } = TechLogSeanceStartMode.Immediately;
public DateTime StartDateTime { get; set; } = DateTime.MinValue;
public int Duration { get; set; } = 0;
}
}