1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace QuYuSaoMiao.Entity
- {
- public class ContourMsg
- {
- public string msg { get; set; }
- public int code { get; set; }
- public List<Contour> lstContours { get; set; }
- public string contourPath { get; set; }
- public List<double> maxPoint{ get; set; }
- }
- }
|