У меня есть модель со словарем, которую я хочу инициализировать со значением по умолчанию Вот как я это делаю сейчас
public Dictionary<string, string> controllableProperties = new Dictionary<string, string> {
{"controllableProperties", [{"name": "Reboot","type": {"@class": "com.avispl.symphony.api.dal.dto.control.AdvancedControllableProperty$Button","gracePeriod": "120000","labelPressed": "Rebooting..."}}]}
};
Но значение не является строкой
Я пробовал вот так
public Dictionary<string, string> controllableProperties = new Dictionary<string, string> {
{"controllableProperties", "[{"name": "Reboot","type": {"@class": "com.avispl.symphony.api.dal.dto.control.AdvancedControllableProperty$Button","gracePeriod": "120000","labelPressed": "Rebooting..."}}]"}
};
Но все равно не так
Как я могу решить эту проблему?