using System; using System.Collections.Generic; using System.Text; namespace FarmMapsAPI.Carbon.Models { public class CropCoverMonthsModel { public string CropName { get; set; } public List CoverMonths { get; set; } } }