Add TSV support.
Import Upload
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.Web;
|
||||
|
||||
namespace MileageTraker.Web.ViewModels.FuelLog
|
||||
{
|
||||
public class FuelLogImportUploadViewModel
|
||||
{
|
||||
[Required]
|
||||
[Display(Name = "FuelMan CSV File")]
|
||||
public HttpPostedFileBase File { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user