using System; using Abp.Application.Services.Dto; namespace ShwasherSys.CompanyInfo.DeviceInfo.Dto { public class MaintainDto : EntityDto { public string Address { get; set; } public string Description { get; set; } public DateTime? PlanDate { get; set; } } }