Files
Needlework.Net/Needlework.Net/Services/IDialog.cs
2024-08-18 22:10:04 -05:00

11 lines
212 B
C#

using FluentAvalonia.UI.Controls;
using System.Threading.Tasks;
namespace Needlework.Net.Services
{
public interface IDialog
{
public Task<ContentDialogResult> ShowAsync(object data);
}
}