Resolves #26 Entity view page

This commit is contained in:
estevez
2018-09-29 16:19:01 +03:00
parent 067ccfde02
commit c0a9b89d40
8 changed files with 219 additions and 27 deletions

View File

@ -63,4 +63,10 @@ class ServiceCallEvent {
Map<String, String> additionalParams;
ServiceCallEvent(this.domain, this.service, this.entityId, this.additionalParams);
}
class ShowEntityPageEvent {
Entity entity;
ShowEntityPageEvent(this.entity);
}