11 lines
321 B
C#
11 lines
321 B
C#
namespace Api.Models.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]";
|
|
}
|
|
}
|