MaintainDto.cs 316 B

1234567891011121314
  1. using System;
  2. using Abp.Application.Services.Dto;
  3. namespace ShwasherSys.CompanyInfo.DeviceInfo.Dto
  4. {
  5. public class MaintainDto : EntityDto<int>
  6. {
  7. public string Address { get; set; }
  8. public string Description { get; set; }
  9. public DateTime? PlanDate { get; set; }
  10. }
  11. }