Restyle login, change password works
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace MileageTraker.Web.ViewModels.Log
|
||||
{
|
||||
public class LogResultsViewModel
|
||||
{
|
||||
public IEnumerable<int> Years { get; set; }
|
||||
public IEnumerable<int> Months { get; set; }
|
||||
public IEnumerable<LogIndexViewModel> Logs { get; set; }
|
||||
public int SelectedYear { get; set; }
|
||||
public int SelectedMonth { get; set; }
|
||||
public string SelectedLogType { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user