Files
Atomx/Atomx.Common/Models/KeyValue.cs
2025-12-25 12:41:37 +08:00

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;
}
}