using System.Collections.Generic; namespace EC.Entity.Warning { public class WarningModel { public int warninglevel { get; set; } public string ip { get; set; } public string filename { get; set; } public int width { get; set; } public int height { get; set; } public List boxs { get; set; } } }