Files
2022-02-04 17:53:35 +01:00

28 lines
765 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
#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
}
}