4dcffda1f8
Import Upload
12 lines
265 B
C#
12 lines
265 B
C#
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; }
|
|
}
|
|
} |