9 lines
256 B
C#
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;
|
|
}
|