17 lines
342 B
C#
17 lines
342 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MP.Stats.Data
|
|
{
|
|
public class AutocompleteModel
|
|
{
|
|
#region Public Properties
|
|
|
|
public string LabelField { get; set; }
|
|
public string ValueField { get; set; }
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |