Kv.cs 326 B

12345678910111213141516171819
  1. using System.Security.Cryptography.X509Certificates;
  2. namespace SnapshotWinFormsApp.Entities.NewHotline;
  3. public class Kv
  4. {
  5. public Kv()
  6. {
  7. }
  8. public Kv(string key, string value)
  9. {
  10. Key = key;
  11. Value = value;
  12. }
  13. public string Key { get; set; }
  14. public string Value { get; set; }
  15. }