Initial commit
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
namespace PowderCoating.Application.Configuration;
|
||||
|
||||
public class StorageSettings
|
||||
{
|
||||
public string ConnectionString { get; set; } = string.Empty;
|
||||
public StorageContainers Containers { get; set; } = new();
|
||||
}
|
||||
|
||||
public class StorageContainers
|
||||
{
|
||||
public string ProfileImages { get; set; } = "profileimages";
|
||||
public string JobImages { get; set; } = "jobimages";
|
||||
public string Manuals { get; set; } = "manuals";
|
||||
public string CompanyLogos { get; set; } = "companylogos";
|
||||
public string ReceiptImages { get; set; } = "receiptimages";
|
||||
public string QuoteImages { get; set; } = "quoteimages";
|
||||
public string BugReportMedia { get; set; } = "bugreportmedia";
|
||||
}
|
||||
Reference in New Issue
Block a user