ShipmentDataModel.cs 318 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using InABox.Core;
  4. namespace Comal.Classes
  5. {
  6. public class ShipmentDataModel : BaseDataModel<Shipment>
  7. {
  8. public ShipmentDataModel(Filter<Shipment> filter) : base(filter)
  9. {
  10. }
  11. public override string Name => "Shipments";
  12. }
  13. }