12345678910111213141516171819 |
- using System.Security.Cryptography.X509Certificates;
- namespace SnapshotWinFormsApp.Entities.NewHotline;
- public class Kv
- {
- public Kv()
- {
- }
- public Kv(string key, string value)
- {
- Key = key;
- Value = value;
- }
- public string Key { get; set; }
- public string Value { get; set; }
- }
|