using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace CallCenterApi.Interface.Models.Input { public class CustomerFieldInput { public int Id { get; set; } public int AttributeId { get; set; } public string Name { get; set; } public int? Sort { get; set; } = 0; public int? CharLength { get; set; } = 0; public int? IsNecessary { get; set; } = 0; public int? IsExportOrInput { get; set; } = 0; public int? IsShowOnList { get; set; } = 0; public int? IsShowOnScrean { get; set; } = 0; public int? Search { get; set; } = 0; } }