10 lines
246 B
C#
10 lines
246 B
C#
|
|
namespace Wino.Mail.WinUI.Views.Abstract;
|
||
|
|
|
||
|
|
public abstract class ContactsAppShellAbstract : BasePage
|
||
|
|
{
|
||
|
|
protected ContactsAppShellAbstract()
|
||
|
|
{
|
||
|
|
NavigationCacheMode = Microsoft.UI.Xaml.Navigation.NavigationCacheMode.Enabled;
|
||
|
|
}
|
||
|
|
}
|