Files
lux/EgwCoreLib.Lux.Data/DbModel/Utils/CountersModel.cs
T
2026-03-25 07:24:21 +01:00

27 lines
650 B
C#

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