2024-07-03 22:18:32 +02:00
|
|
|
|
using Microsoft.Extensions.Configuration;
|
2024-10-27 22:09:46 +01:00
|
|
|
|
using WatchIt.Website.Services.Configuration.Model;
|
2024-07-03 22:18:32 +02:00
|
|
|
|
|
2024-10-27 22:09:46 +01:00
|
|
|
|
namespace WatchIt.Website.Services.Configuration;
|
2024-07-03 22:18:32 +02:00
|
|
|
|
|
|
|
|
|
|
public class ConfigurationService(IConfiguration configuration) : IConfigurationService
|
|
|
|
|
|
{
|
|
|
|
|
|
#region PROPERTIES
|
|
|
|
|
|
|
|
|
|
|
|
public ConfigurationData Data => configuration.Get<ConfigurationData>()!;
|
|
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
}
|