星期二, 6月 09, 2020

[VS] 選擇性貼上

開放資料平台上抓到 json 後,利用 VS 功能 - 選擇性貼上,來完成 Model 建置

編輯 => 選擇性貼上 => 貼上 json 作為類別

[VS] 選擇性貼上-1

產生的 Model
namespace ConsoleApp2
{
    public class Rootobject
    {
        public bool success { get; set; }
        public Result result { get; set; }
    }

    public class Result
    {
        public string resource_id { get; set; }
        public Field[] fields { get; set; }
        public Record[] records { get; set; }
        public int limit { get; set; }
        public int offset { get; set; }
        public int total { get; set; }
    }

    public class Field
    {
        public string type { get; set; }
        public string id { get; set; }
    }

    public class Record
    {
        public string MothCollectSpeciesID { get; set; }
        public string MothCollectDate { get; set; }
        public string County { get; set; }
        public string Township { get; set; }
        public string MothCollectPlace { get; set; }
        public string WGS84Lat { get; set; }
        public string WGS84Lon { get; set; }
        public string MothFamily { get; set; }
        public string MothScienceName { get; set; }
        public string MothPhotoURL { get; set; }
    }
}

沒有留言:

張貼留言