9 lines
208 B
C#
9 lines
208 B
C#
namespace Expose.MyIT.Shared.Models.Stateless.Methods;
|
|
|
|
public interface IAppSettingsController
|
|
{
|
|
|
|
static string GetRouteName() => nameof(IAppSettingsController)[1..^10];
|
|
string[] GetAppSettings();
|
|
|
|
} |