You've already forked onecmonitor
mirror of
https://github.com/akpaevj/onecmonitor.git
synced 2026-06-11 20:42:53 +02:00
10 lines
348 B
C#
10 lines
348 B
C#
namespace OneSwiss.Agent.Models;
|
|
|
|
public class TechLogSeance
|
|
{
|
|
public Guid Id { get; set; }
|
|
public DateTime StartDateTime { get; set; } = DateTime.MinValue;
|
|
public DateTime FinishDateTime { get; set; } = DateTime.MaxValue;
|
|
public string Template { get; set; } = string.Empty;
|
|
public TechLogSeanceStatus Status { get; set; }
|
|
} |