using System.Collections.Generic; namespace Salesforce.NET { public class SchemaResponse { public ICollection Fields { get; set; } public class SchemaField { /// /// User-friendly name for the field /// public string Label { get; set; } /// /// Internal name for the field /// public string Name { get; set; } public string DefaultValue { get; set; } public string Type { get; set; } } } }