using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; #nullable disable namespace LiMan.DB.DBModels { // // This is here so CodeMaid doesn't reorganize this document // //[Index(nameof(Installazione), nameof(Active), nameof(DiskStatus))] [Table("LogCall")] public partial class LogCallModel { #region Public Properties public DateTime DataRif { get; set; } public string CodInst { get; set; } public string CodApp { get; set; } public string TargetUrl { get; set; } public int NumCall { get; set; } = 0; #endregion Public Properties } }