ItemModel.cs 258 B

1234567891011121314
  1. namespace MSBuild
  2. {
  3. public class ItemModel
  4. {
  5. public string Key { get; }
  6. public string Value { get; }
  7. public ItemModel(string key, string value)
  8. {
  9. Key = key;
  10. Value = value;
  11. }
  12. }
  13. }