using System; using System.Collections.Generic; using System.Text; namespace VOL.Entity.SystemModels { public class ModelProperties { public string ColType { get; set; } public int colMaxLength { get; set; } public bool Required { get; set; } } }