HouseDto.cs 415 B

1234567891011121314151617
  1. using Prism.Mvvm;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace LogoForceTestApp.Modules.MainModule.Models
  8. {
  9. public class HouseDto:BindableBase
  10. {
  11. public string DateH { get; set; }
  12. public string LackH { get; set; }
  13. public string UsedH { get; set; }
  14. public string TotalH { get; set; }
  15. }
  16. }