using System.Collections.Generic; namespace skydiveLogs_api.DataContract { public class DropZoneSimpleResp { public int Id { get; set; } public string Name { get; set; } public IEnumerable Type { get; set; } public bool IsFavorite { get; set; } } }