using Prism.Mvvm;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace LogoForceTestApp.Modules.MainModule.Models
{
    public class HouseDto:BindableBase
    {
        public string DateH { get; set; }
        public string LackH { get; set; }
        public string UsedH { get; set; }
        public string TotalH { get; set; }
    }
}