mirror of
https://github.com/bitwarden/server
synced 2025-12-25 20:53:16 +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; }
|
|
}
|