1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-30 23:52:50 -05:00
Files
bitwarden/src/Core/Settings/IFileStorageSettings.cs
2022-08-29 14:53:16 -04:00

9 lines
189 B
C#

namespace Bit.Core.Settings;
public interface IFileStorageSettings
{
string ConnectionString { get; set; }
string BaseDirectory { get; set; }
string BaseUrl { get; set; }
}