12 lines
296 B
C#
12 lines
296 B
C#
using Wino.Mail.WinUI.ViewModels;
|
|
|
|
namespace Wino.Mail.WinUI.Views.Abstract;
|
|
|
|
public abstract class WinoAppShellAbstract : BasePage<WinoAppShellViewModel>
|
|
{
|
|
protected WinoAppShellAbstract()
|
|
{
|
|
NavigationCacheMode = Microsoft.UI.Xaml.Navigation.NavigationCacheMode.Enabled;
|
|
}
|
|
}
|