using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; namespace InventoryTraker.Web.Models { public class InventoryDistributeForm { public IList InventoryQuantities { get; set; } [Required] public string Destination { get; set; } [Required, Display(Name = "Distributed Date")] public DateTime DistributedDate { get; set; } public string Memo { get; set; } } }