Files
TorchRemote/TorchRemote.Plugin/Abstractions/Controllers/ISettingsController.cs
2022-09-30 11:51:34 +07:00

8 lines
182 B
C#

using TorchRemote.Models.Responses;
namespace TorchRemote.Plugin.Abstractions.Controllers;
public interface ISettingsController
{
SettingInfoResponse Get(string fullName);
}