Craig Raw
4 years ago
2 changed files with 24 additions and 3 deletions
@ -0,0 +1,15 @@ |
|||
package com.sparrowwallet.sparrow.event; |
|||
|
|||
import com.sparrowwallet.sparrow.Theme; |
|||
|
|||
public class ThemeChangedEvent { |
|||
private final Theme theme; |
|||
|
|||
public ThemeChangedEvent(Theme theme) { |
|||
this.theme = theme; |
|||
} |
|||
|
|||
public Theme getTheme() { |
|||
return theme; |
|||
} |
|||
} |
Loading…
Reference in new issue