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; } } }