19 lines
438 B
C#
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; }
|
|
}
|
|
}
|