mirror of
https://github.com/BlossomiShymae/Needlework.Net.git
synced 2026-07-11 13:39:41 +02:00
11 lines
212 B
C#
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);
|
|
}
|
|
}
|