8 lines
147 B
C#
8 lines
147 B
C#
using PMSWPF.Models;
|
|
|
|
namespace PMSWPF.Services;
|
|
|
|
public interface IDeviceDialogService
|
|
{
|
|
Task<Device> ShowAddDeviceDialog(Device device);
|
|
} |