View difference between Paste ID: 9wEkrWBh and N7nRzyrp
SHOW: | | - or go back to the newest paste.
1-
export module TechnicCommon {
1+
2
        constructor(private url:string, private md5:string) {
3
4
        }
5
6
        getUrl() : string {
7
            return this.url;
8
        }
9
10
        getMd5() : string {
11
            return this.md5;
12
        }
13
    }