21 lines
468 B
C#
21 lines
468 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LiMan.DB.DBModels
|
|
{
|
|
public partial class StatsCallModel
|
|
{
|
|
#region Public Properties
|
|
|
|
public int YearRef { get; set; } = 0;
|
|
public string CodInst { get; set; } = "";
|
|
public string CodApp { get; set; } = "";
|
|
public int TotCall { get; set; } = 0;
|
|
|
|
#endregion Public Properties
|
|
}
|
|
}
|