Files
2024-10-12 16:08:01 +02:00

27 lines
673 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GPW.CORE.Data.DbModels
{
// <Auto-Generated>
// This is here so CodeMaid doesn't reorganize this document
// </Auto-Generated>
[Table("Lingue")]
public partial class LingueModel
{
#region Public Properties
[Key, MaxLength(3)]
public string Lingua { get; set; } = "";
[MaxLength(50)]
public string DescrizioneLingua { get; set; } = "";
#endregion Public Properties
}
}