1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using System.Configuration;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Edge.Core.Configuration
- {
- public class MetaConfiguration
- {
- public List<KeyAndValuePair> Parameter { get; set; }
- }
- public class KeyAndValuePair
- {
- public string Name { get; set; }
- public string Value { get; set; }
- public string Description { get; set; }
- }
- }
|