14 lines
368 B
C#
14 lines
368 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using API.Class;
|
|
|
|
namespace API.Models;
|
|
|
|
public class Material
|
|
{
|
|
[Key] public int Id {get; set;}
|
|
[Required, MaxLength(100)] public string Name {get; set;}
|
|
[Required] public int Quantity {get; set;}
|
|
|
|
[Required] public int WarehouseId {get; set;}
|
|
[Required] public Warehouse Warehouse {get; set;}
|
|
} |