mirror of
https://github.com/bitwarden/server.git
synced 2025-06-30 23:52:50 -05: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; }
|
|
}
|