17 lines
370 B
C#
17 lines
370 B
C#
using System.IO;
|
|
using FileManager;
|
|
|
|
namespace AudibleApiDomainService
|
|
{
|
|
public class Settings
|
|
{
|
|
public string IdentityFilePath { get; }
|
|
public string LocaleCountryCode { get; }
|
|
|
|
public Settings(Configuration config)
|
|
{
|
|
IdentityFilePath = Path.Combine(config.LibationFiles, "IdentityTokens.json");
|
|
LocaleCountryCode = config.LocaleCountryCode;
|
|
}
|
|
}
|
|
} |