35 lines
872 B
C#
35 lines
872 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace EgwCoreLib.Lux.Data.DbModel.Utils
|
|
{
|
|
// <Auto-Generated>
|
|
// This is here so CodeMaid doesn't reorganize this document
|
|
// </Auto-Generated>
|
|
|
|
[Table("utils_counter")]
|
|
public class CounterModel
|
|
{
|
|
/// <summary>
|
|
/// Anno Riferimento
|
|
/// </summary>
|
|
public int RefYear { get; set; } = DateTime.Today.Year;
|
|
|
|
/// <summary>
|
|
/// Chiave del counter annuale
|
|
/// </summary>
|
|
public string CountName { get; set; } = "";
|
|
|
|
/// <summary>
|
|
/// Valore dell'ultimo contatore staccato
|
|
/// </summary>
|
|
public int Counter { get; set; }
|
|
|
|
}
|
|
}
|