22 lines
501 B
C#
22 lines
501 B
C#
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.DatabaseModels
|
|
{
|
|
[Table("ST_Template")]
|
|
public partial class ST_Template
|
|
{
|
|
|
|
[Key]
|
|
public string CodTempl { get; set; } = "";
|
|
public string DescTempl { get; set; } = "";
|
|
|
|
}
|
|
} |