14 lines
250 B
C#
14 lines
250 B
C#
namespace Expose.MyIT.Shared.Models.Stateless;
|
|
|
|
public interface IAppSettingsController<T>
|
|
{
|
|
|
|
enum Action : int
|
|
{
|
|
App = 0
|
|
}
|
|
|
|
static string GetRouteName() => nameof(IAppSettingsController<T>)[1..^10];
|
|
T GetAppSettings();
|
|
|
|
} |