first commit
This commit is contained in:
13
moehu/moehu_fontend/lib/entity/PubilcEntity.dart
Normal file
13
moehu/moehu_fontend/lib/entity/PubilcEntity.dart
Normal file
@@ -0,0 +1,13 @@
|
||||
class WorksInfoProps {
|
||||
int _id;
|
||||
int get getId => _id;
|
||||
set setId(int id) => _id = id;
|
||||
WorksInfoProps(this._id);
|
||||
}
|
||||
|
||||
class KeywordProps {
|
||||
String _keyword;
|
||||
String get getkeyword => _keyword;
|
||||
set setKeyword(String keyword) => _keyword = keyword;
|
||||
KeywordProps(this._keyword);
|
||||
}
|
||||
Reference in New Issue
Block a user