using System.Collections.Generic; namespace HT.Cloud.Code { public class Flow { public string title { get; set; } public int initNum { get; set; } public List lines { get; set; } public List nodes { get; set; } public List areas { get; set; } } }