TF-1311: set subscribeMailbox in UseCase and implement in Repository
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
enum MailboxSubscribeState {
|
||||
enabled,
|
||||
disabled;
|
||||
|
||||
String get keyValue {
|
||||
switch(this) {
|
||||
case MailboxSubscribeState.enabled:
|
||||
return 'enabled';
|
||||
case MailboxSubscribeState.disabled:
|
||||
return 'disabled';
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user