Files

11 lines
214 B
C#
Raw Permalink Normal View History

2024-11-10 23:28:25 +01:00
using Wino.Core.Domain.Interfaces;
2025-02-16 11:54:23 +01:00
namespace Wino.Core.ViewModels;
public class SettingsDialogViewModel : CoreBaseViewModel
2024-11-10 23:28:25 +01:00
{
2025-05-18 14:06:25 +02:00
public SettingsDialogViewModel(IMailDialogService dialogService)
2024-11-10 23:28:25 +01:00
{
}
}