Shared core and views part 1

This commit is contained in:
Burak Kaan Köse
2024-07-12 02:29:17 +02:00
parent bdfff1536d
commit c45d0022d6
87 changed files with 999 additions and 243 deletions

View File

@@ -1,9 +1,15 @@
using System.Collections.Generic;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Wino.Core.Domain.Interfaces;
using Wino.Core.Domain.Models.Accounts;
#if NET8_0
using Microsoft.UI.Xaml.Controls;
using Microsoft.UI.Xaml;
#else
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml;
#endif
namespace Wino.Dialogs
{
public sealed partial class NewAccountDialog : ContentDialog