Files
InventoryTraker-Box/InventoryTraker.Web/Models/InventoryDistributeForm.cs
T
2016-08-31 10:30:27 -04:00

19 lines
443 B
C#

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