HotelDataView.cs 392 B

12345678910111213141516171819
  1. using OASystem.Domain.Entities.Resource;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace OASystem.Domain.ViewModels.Resource
  8. {
  9. public class HotelDataView:Res_HotelData
  10. {
  11. }
  12. public class QueryHotelDataSelect {
  13. public int Id { get; set; }
  14. public string City { get; set; }
  15. }
  16. }