Web API for the bulk printing desktop application.

Vendor.cs 419B

123456789101112131415161718
  1. using System.ComponentModel.DataAnnotations;
  2. using System.ComponentModel.DataAnnotations.Schema;
  3. namespace MAX.Models
  4. {
  5. public class Vendor
  6. {
  7. [DatabaseGenerated(DatabaseGeneratedOption.None)]
  8. public int Id { get; set; }
  9. [MaxLength(50)]
  10. public string SerialNumber { get; set; }
  11. public int AccountId { get; set; }
  12. public Account Account { get; set; }
  13. }
  14. }