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