using NorthwindAPI.Models;
using NorthwindAPI.BusinessObject;
using System.Collections.Generic;
 
namespace NorthwindAPI.ViewModels.Base
{ 
     /// <summary>
     /// Base class for ProductsForeachViewModel.  Do not make changes to this class,
     /// instead, put additional code in the ProductsForeachViewModel class
     /// </summary>
     public class ProductsForeachViewModelBase
     { 
         public List<Products> ProductsData { getset; }
         public string[,] ProductsFieldNames { getset; }
         public string FieldToSort { getset; }
         public string FieldToSortWithOrder { getset; }
         public string FieldSortOrder { getset; }
         public int StartPage { getset; }
         public int EndPage { getset; }
         public int CurrentPage { getset; }
         public int NumberOfPagesToShow { getset; }
         public int TotalPages { getset; }
         public List<string> UnsortableFields { getset; }
     } 
}