38 lines
998 B
C#
38 lines
998 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
// <Auto-Generated>
|
|
// This is here so CodeMaid doesn't reorganize this document
|
|
// </Auto-Generated>
|
|
|
|
namespace GWMS.Data.DatabaseModels
|
|
{
|
|
/// <summary>
|
|
/// Tabella AnKeyVal
|
|
/// </summary>
|
|
[Table("AnKeyVal")]
|
|
public class AnKeyValModel
|
|
{
|
|
#region Public Properties
|
|
|
|
[Key, Column(Order = 0), MaxLength(50)]
|
|
public string KeyName { get; set; }
|
|
|
|
[Column(Order = 1)]
|
|
|
|
public int ValInt { get; set; } = 0;
|
|
[Column(Order = 2)]
|
|
public int ValFloat { get; set; } = 0;
|
|
|
|
[Column(Order = 3), MaxLength(250)]
|
|
public string ValString { get; set; } = "";
|
|
|
|
[Column(Order = 4), Comment("Descrizione dell'item"), MaxLength(250)]
|
|
public string Descript { get; set; } = "";
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |