Files
webdoorcreator/WebDoorCreator.Data/DbModels/ListValuesTempModel.cs
T
2023-04-05 14:30:17 +02:00

43 lines
1012 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WebDoorCreator.Data.DbModels
{
#nullable disable
// <Auto-Generated>
// This is here so CodeMaid doesn't reorganize this document
// </Auto-Generated>
[Table("ListValuesTemp")]
public partial class ListValuesTempModel
{
#region Public Properties
[MaxLength(50)]
public string TableName { get; set; }
[MaxLength(50)]
public string FieldName { get; set; }
[MaxLength(50)]
public string Value { get; set; }
[MaxLength(50)]
public string Label { get; set; }
public int Ordinal { get; set; }
[MaxLength(50)]
public string InputType { get; set; }
[MaxLength(50)]
public string DefaultVal { get; set; }
#endregion Public Properties
}
}