Classes/AutoLoad/Blue.ResourceGroup.cs
using System.Collections; using System.Collections.Generic; namespace Blue { public class ResourceGroup { public string Name { get; set; } public string Location { get; set;} public Dictionary<string, string> Tags {get;set;} public Dictionary<string, string> Properties {get;set;} public string Id { get; set; } public string ResourceGroupId { get; set; } } } |