RBLNews/RBLNews.Shared/Services/Contracts/IConfigService.cs
Tobias Wohlleben 18fd6d6f59
All checks were successful
Restart Docker Container on Production / build (pull_request) Successful in 3m2s
umbau auf enviroment appsettings
2024-09-24 23:13:52 +02:00

8 lines
151 B
C#

using RBLNews.Shared.Models;
namespace RBLNews.Shared.Services.Contracts;
public interface IConfigService
{
AppSettingsModel? AppSettings { get; }
}