Desktop tool for browsing account info from EVE-Online
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ApiResult.java 354B

123456789101112131415161718192021
  1. /*
  2. * To change this template, choose Tools | Templates
  3. * and open the template in the editor.
  4. */
  5. package uk.co.md87.evetool.api.parser;
  6. import java.util.Date;
  7. import java.util.List;
  8. /**
  9. *
  10. * @author chris
  11. */
  12. public class ApiResult extends ApiElement {
  13. private boolean cacheHit;
  14. private Date cachedSince;
  15. private Date cachedUntil;
  16. }