Web API for the bulk printing desktop application.

Product.cs 425B

123456789101112131415161718192021
  1. using System.Runtime.Serialization;
  2. namespace MAX.Models
  3. {
  4. public class Product
  5. {
  6. public int Id { get; set; }
  7. public Batch.Vouchertype VoucherType { get; set; }
  8. public string Description { get; set; }
  9. public decimal FaceValue { get; set; }
  10. public decimal DiscountPercentage { get; set; }
  11. [IgnoreDataMember]
  12. public Network Network { get; set; }
  13. }
  14. }