Files
DMS/Services/IDeviceDialogService.cs

8 lines
134 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();
}