SPEC: continuo pagina setup TemplateKit

This commit is contained in:
Samuele Locatelli
2025-04-09 19:14:33 +02:00
parent 18f60cda6d
commit ef3dad095d
23 changed files with 602 additions and 450 deletions
+31
View File
@@ -0,0 +1,31 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
#nullable disable
// <Auto-Generated>
// This is here so CodeMaid doesn't reorganize this document
// </Auto-Generated>
namespace MP.Data.DbModels
{
[Table("AnagCounters")]
public partial class AnagCountersModel
{
#region Public Properties
[Key, DatabaseGenerated(DatabaseGeneratedOption.None), MaxLength(50)]
public string CntType { get; set; } = "";
[MaxLength(50)]
public string CntCode { get; set; } = "";
public int LastNum { get; set; } = 0;
[MaxLength(250)]
public string Descript { get; set; } = "";
#endregion Public Properties
}
}