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 { // // This is here so CodeMaid doesn't reorganize this document // [Table("utils_counter")] public class CounterModel { /// /// Anno Riferimento /// public int RefYear { get; set; } = DateTime.Today.Year; /// /// Chiave del counter annuale /// public string CountName { get; set; } = ""; /// /// Valore dell'ultimo contatore staccato /// public int Counter { get; set; } } }