initial commit

This commit is contained in:
2026-07-21 14:22:06 +07:00
commit 2d7959f202
572 changed files with 45295 additions and 0 deletions
@@ -0,0 +1,18 @@
using Indotalent.Infrastructure.File.Avatar;
using Indotalent.Infrastructure.File.Aws;
using Indotalent.Infrastructure.File.Azure;
using Indotalent.Infrastructure.File.Dropbox;
using Indotalent.Infrastructure.File.Google;
using Indotalent.Infrastructure.File.Local;
namespace Indotalent.Infrastructure.File;
public class FileStorageSettingsModel
{
public AvatarStorageModel Avatar { get; set; } = new();
public LocalStorageModel Local { get; set; } = new();
public AwsS3SettingsModel AwsS3 { get; set; } = new();
public AzureBlobSettingsModel AzureBlob { get; set; } = new();
public GoogleCloudSettingsModel GoogleCloud { get; set; } = new();
public DropboxSettingsModel Dropbox { get; set; } = new();
}