Advertisement
Guest User

child

a guest
Sep 11th, 2015
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import {TechnicCommon} from './WebResource';
  2.  
  3. export class VersionedResource extends WebResource {
  4. constructor(private name:string, private version:string, url:string, md5:string) {
  5. super(url, md5);
  6. }
  7.  
  8. getName() { return this.name; }
  9. getVersion() { return this.version; }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement