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; } } }