Code refactoring for cleaner view model design
This commit is contained in:
@ -75,9 +75,9 @@ namespace Aurora.Design.Views
|
||||
#endregion Player
|
||||
|
||||
#region Lifecycle
|
||||
public virtual void OnActive() { }
|
||||
public virtual Task OnActive() { return Task.FromResult<object>(null); }
|
||||
|
||||
public virtual void OnInactive() { }
|
||||
public virtual Task OnInactive() { return Task.FromResult<object>(null); }
|
||||
|
||||
#endregion
|
||||
|
||||
|
Reference in New Issue
Block a user