Fuel Log Match

This commit is contained in:
2015-09-22 21:11:47 -04:00
parent 27375bbb65
commit 829d84d73e
18 changed files with 748 additions and 233 deletions
+11
View File
@@ -0,0 +1,11 @@
using System.Collections.Generic;
namespace MileageTraker.Web.ViewModels.FuelLog
{
public class MatchViewModel
{
public FuelLogViewModel FuelLog { get; set; }
public LogMatchViewModel CurrentlyMatchedLog { get; set; }
public IList<LogMatchViewModel> MatchedLogs { get; set; }
}
}