using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace Warehouse.Models.DTO { public class MaterialCodeDto { public string partnumber { get; set; } public string parttype { get; set; } public string description { get; set; } public bool flag { get; set; } } public class PartTypeDto { public string parttype { get; set; } public string description { get; set; } public byte flag { get; set; } } }