This commit is contained in:
2025-12-25 12:41:37 +08:00
parent 7b6ec9c1d8
commit f7bb6bb2dc
10 changed files with 363 additions and 109 deletions

View File

@@ -0,0 +1,8 @@
namespace Atomx.Common.Models
{
public class KeyValue
{
public string Key { get; set; } = string.Empty;
public string Value { get; set; } = string.Empty;
}
}