Files
blazor-wms/Infrastructure/File/Azure/AzureBlobSettingsModel.cs
T
2026-07-21 14:41:46 +07:00

9 lines
256 B
C#

namespace Indotalent.Infrastructure.File.Azure;
public class AzureBlobSettingsModel
{
public bool IsUsed { get; set; }
public string ConnectionString { get; set; } = string.Empty;
public string ContainerName { get; set; } = string.Empty;
}