ConfigEntry.cs 159 B

12345678
  1. namespace D3NsCore.Entities
  2. {
  3. internal class ConfigEntry
  4. {
  5. public string Key { get; set; }
  6. public string Value { get; set; }
  7. }
  8. }