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