source: Application/Models/ViewModels/SearchViewModel.cs

Last change on this file was f5f7c24, checked in by 192011 <mk.snicker@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 359 bytes
Line 
1using Models.DataTransferObjects.Serach;
2using System;
3using System.Collections.Generic;
4using System.Linq;
5using System.Text;
6using System.Threading.Tasks;
7
8namespace Models.ViewModels
9{
10 public class SearchViewModel
11 {
12 public List<SearchLocationDTO> Locations { set; get; }
13 public List<SearchBrandsDTO> Brands { set; get; }
14 }
15}
Note: See TracBrowser for help on using the repository browser.