mirror of
https://github.com/bitwarden/server.git
synced 2026-02-07 17:33:11 +08:00
10 lines
223 B
C#
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; }
|
|
}
|