13 lines
304 B
C#
13 lines
304 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace InventoryTraker.Web.Models
|
|
{
|
|
public class InventoryQuantityForm
|
|
{
|
|
[Required]
|
|
public int InventoryId { get; set; }
|
|
|
|
[Required, Range(1, int.MaxValue, ErrorMessage = "Quantity must be greater than 0")]
|
|
public int Quantity { get; set; }
|
|
}
|
|
} |