8 lines
182 B
C#
8 lines
182 B
C#
using TorchRemote.Models.Responses;
|
|
namespace TorchRemote.Plugin.Abstractions.Controllers;
|
|
|
|
public interface ISettingsController
|
|
{
|
|
SettingInfoResponse Get(string fullName);
|
|
}
|