Files
DMS/Services/IDialogService.cs

10 lines
187 B
C#
Raw Normal View History

using PMSWPF.Models;
namespace PMSWPF.Services;
public interface IDialogService
{
2025-06-12 18:56:25 +08:00
Task<Device> ShowAddDeviceDialog();
void ShowMessageDialog(string title, string message);
}