mirror of
https://github.com/bitwarden/server.git
synced 2026-02-18 14:53:21 +08:00
9 lines
189 B
C#
9 lines
189 B
C#
namespace Bit.Core.Settings;
|
|
|
|
public interface IFileStorageSettings
|
|
{
|
|
string ConnectionString { get; set; }
|
|
string BaseDirectory { get; set; }
|
|
string BaseUrl { get; set; }
|
|
}
|