mirror of
https://github.com/bitwarden/server
synced 2025-12-26 13:13:24 +00: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; }
|
|
}
|