Web API for the bulk printing desktop application.

OrderResponse.cs 167B

12345678910
  1. namespace MAX.Models
  2. {
  3. public class OrderResponse
  4. {
  5. public Batch Batch { get; set; }
  6. public decimal RemainingBalance { get; set; }
  7. }
  8. }