LicenseTrackingItemGrid.cs 400 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. using System.Windows;
  6. using InABox.Client.Remote.Json;
  7. using InABox.Clients;
  8. using InABox.Core;
  9. using InABox.DynamicGrid;
  10. using PRS.Shared;
  11. using RestSharp;
  12. namespace PRSServer.Forms.DatabaseLicense
  13. {
  14. public class LicenseTrackingItemGrid : DynamicItemsListGrid<LicenseTrackingItem>
  15. {
  16. }
  17. }