using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; namespace StockMan.Data.DbModels { // // This is here so CodeMaid doesn't reorganize this document // [Table("CountersList")] public partial class CountersListModel { public string Id { get; set; } = null!; public int NextNum { get; set; } } }