Files
mapo-core/MP.AppAuth/Models/ListValue.cs
T
2021-09-18 10:55:24 +02:00

20 lines
440 B
C#

using System;
using System.Collections.Generic;
#nullable disable
namespace MP.AppAuth.Models
{
public partial class ListValue
{
#region Public Properties
public string FieldName { get; set; }
public string Label { get; set; }
public int? Ordinal { get; set; }
public string TableName { get; set; }
public string Value { get; set; }
#endregion Public Properties
}
}