31 lines
812 B
C#
31 lines
812 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using AutoMapper;
|
|
|
|
namespace LeafWeb.Web.ViewModels.LeafInput
|
|
{
|
|
public class ConfirmViewModel
|
|
{
|
|
[Display(Name = "Your name")]
|
|
public string Name { get; set; }
|
|
[Display(Name = "Your email")]
|
|
public string Email { get; set; }
|
|
[Display(Name = "Data identifier")]
|
|
public string Identifier { get; set; }
|
|
[Display(Name = "Site Id")]
|
|
public string SiteId { get; set; }
|
|
[Display(Name = "Photosynthetic Pathway")]
|
|
public SelectListViewModel PhotosynthesisType { get; set; }
|
|
public string[] Files { get; set; }
|
|
|
|
static ConfirmViewModel()
|
|
{
|
|
Mapper.CreateMap<CreateViewModel, ConfirmViewModel>();
|
|
}
|
|
|
|
public ConfirmViewModel(CreateViewModel createViewModel, string[] files)
|
|
{
|
|
Mapper.Map(createViewModel, this);
|
|
Files = files;
|
|
}
|
|
}
|
|
} |