Files
limanapp/LiMan.DB/DBModels/LogCallModel.cs
T
2021-11-17 11:16:09 +01:00

29 lines
793 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using static LiMan.DB.Enum;
#nullable disable
namespace LiMan.DB.DBModels
{
// <Auto-Generated>
// This is here so CodeMaid doesn't reorganize this document
// </Auto-Generated>
//[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
}
}