projects
/
potlatch2.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
initial work on tag editor
[potlatch2.git]
/
net
/
systemeD
/
halcyon
/
connection
/
Tag.as
1
package net.systemeD.halcyon.connection {
2
3
public class Tag {
4
public var key:String;
5
public var value:String;
6
7
public function Tag(key:String, value:String) {
8
this.key = key;
9
this.value = value;
10
}
11
}
12
13
14
}
15