Files
gpw_next/GPW.CORE.Data/DbModels/RegistroEventiModel.cs
T
2023-01-25 11:36:05 +01:00

18 lines
492 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
namespace GPW.CORE.Data.DbModels
{
// <Auto-Generated>
// This is here so CodeMaid doesn't reorganize this document
// </Auto-Generated>
[Table("RegistroEventi")]
public partial class RegistroEventiModel
{
public DateTime DataOra { get; set; }
public string Evento { get; set; } = null!;
public string? Commento { get; set; } = "";
}
}