All checks were successful
FarmMaps.Develop/CarbonLib/pipeline/head This commit looks good
13 lines
272 B
C#
13 lines
272 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace FarmMapsAPI.Carbon.Models
|
|
{
|
|
public class CropCoverMonthsModel
|
|
{
|
|
public string CropName { get; set; }
|
|
public List<string> CoverMonths { get; set; }
|
|
}
|
|
}
|