using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPA.SAAS.Manage.Application.DataBase.Dtos.Goods { public class DeviceVersionTemplateImportInputDto { public string Id { get; set; } /// /// 设备类型 /// public string DeviceClientType { get; set; } /// /// 版本 /// public string Version { get; set; } /// /// 文件 /// public IFormFile file { get; set; } public bool IsAddGoodsTemplate { get; set; } = false; } }