17 lines
368 B
C#
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; }
|
|
}
|
|
}
|