20 lines
440 B
C#
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
|
|
}
|
|
} |