using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ICSSoft.FromERP.Model { public class VendorInputDto { public string CustomerId { get; set; } public string VenCode { get; set; } public string VenName { get; set; } public string BeginTime { get; set; } public string EndTime { get; set; } } }