Fix save settings issue

This commit is contained in:
Yegor Vialov
2018-10-07 09:55:37 +03:00
parent b7fb821abe
commit 4085006446
3 changed files with 17 additions and 10 deletions

View File

@ -77,4 +77,11 @@ class ShowEntityPageEvent {
Entity entity;
ShowEntityPageEvent(this.entity);
}
class ShowErrorEvent {
String text;
int errorCode;
ShowErrorEvent(this.text, this.errorCode);
}