Files
zszq-trs/YLErpWeb/Models/QuotationsExportModel.cs
T
2024-05-09 14:06:26 +08:00

15 lines
360 B
C#

namespace YLErp.Web.Models
{
public class QuotationsExportModel
{
public string LogoImgUrl { get; set; }
public string ErWeiMaImgUrl { get; set; }
public DateTime ValueDate { get; set; }
public DateTime? EndDate { get; set; }
public List<flat_price_quotation_group> selectedQuotation { get; set; }
}
}