Files
mapo-core/MP.Data/DatabaseModels/Cal.cs
T
2021-05-17 13:33:13 +02:00

19 lines
438 B
C#

using System;
using System.Collections.Generic;
#nullable disable
namespace MP.Data.DatabaseModels
{
public partial class Cal
{
public DateTime Giorno { get; set; }
public bool? DoDdb { get; set; }
public bool? DoTcr { get; set; }
public bool? DoUl { get; set; }
public bool? DoEcp { get; set; }
public bool? DoRs { get; set; }
public bool? DoOdl { get; set; }
}
}