2
0
mirror of https://github.com/esiur/esiur-dart.git synced 2025-06-27 14:53:11 +00:00
This commit is contained in:
2019-08-07 17:12:20 +03:00
parent b796bf9436
commit 1bf0bc32ae
80 changed files with 394 additions and 13 deletions

View File

@ -0,0 +1,34 @@
import 'MemberType.dart';
import '../../Data/DC.dart';
import './ResourceTemplate.dart';
class MemberTemplate
{
int get index => _index;
String get name => _name;
MemberType get type => _type;
ResourceTemplate _template;
String _name;
MemberType _type;
int _index;
ResourceTemplate get template => _template;
MemberTemplate(ResourceTemplate template, MemberType type, int index, String name)
{
this._template = template;
this._type = type;
this._index = index;
this._name = name;
}
String get fullname => _template.className + "." + _name;
DC compose()
{
// return DC.ToBytes(Name);
}
}