12345678910111213141516171819202122232425 |
- using OASystem.Domain.Entities.Resource;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.ViewModels.Resource
- {
- public class HotelDataView:Res_HotelData
- {
- }
- public class QueryHotelDataSelect {
-
-
-
- public int Id { get; set; }
-
-
-
- public string City { get; set; }
- }
- }
|