11 lines
314 B
C#
11 lines
314 B
C#
namespace Api.Settings
|
|
{
|
|
public sealed class FileStorageSettings
|
|
{
|
|
public string Path { get; set; } = "Files";
|
|
public string DefaultFileName { get; set; } = "";
|
|
public string ToEmail { get; set; } = "";
|
|
public string SubjectPrefix { get; set; } = "[File Download]";
|
|
}
|
|
}
|