28 lines
765 B
C#
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
|
|
}
|
|
} |