9 lines
191 B
C#
9 lines
191 B
C#
namespace Atomx.Common.Models
|
|
{
|
|
public class KeyValue
|
|
{
|
|
public string Label { get; set; } = string.Empty;
|
|
public string Value { get; set; } = string.Empty;
|
|
}
|
|
}
|