Files
DMS/Services/IDeviceDialogService.cs

10 lines
193 B
C#
Raw Normal View History

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