Files
gpw_next/GPW.Api/GPW.Data/DBModels/ListValue.cs
T
2021-10-18 15:43:53 +02:00

17 lines
368 B
C#

using System;
using System.Collections.Generic;
#nullable disable
namespace GPW.Data.DBModels
{
public partial class ListValue
{
public string TableName { get; set; }
public string FieldName { get; set; }
public string Value { get; set; }
public string Label { get; set; }
public int? Ordinal { get; set; }
}
}