| 123456789101112131415161718 |
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
- namespace MAX.Models
- {
- public class Warehouse
- {
- [DatabaseGenerated(DatabaseGeneratedOption.None)]
- public int Id { get; set; }
- [Required, MaxLength(50)]
- public string Name { get; set; }
- public ICollection<Account> Accounts { get; set; }
- }
- }
|