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