Files
mapo-core/MP.AppAuth/DatabaseModels/ListValue.cs
T
2021-09-17 19:42:03 +02:00

17 lines
361 B
C#

using System;
using System.Collections.Generic;
#nullable disable
namespace MP.AppAuth
{
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; }
}
}