1
0
mirror of https://github.com/bitwarden/server synced 2025-12-25 20:53:16 +00:00
Files
server/src/Core/Settings/IInstallationSettings.cs
2022-08-29 16:06:55 -04:00

10 lines
223 B
C#

namespace Bit.Core.Settings;
public interface IInstallationSettings
{
public Guid Id { get; set; }
public string Key { get; set; }
public string IdentityUri { get; set; }
public string ApiUri { get; }
}