initial commit

This commit is contained in:
2026-07-21 14:41:46 +07:00
commit 1bfa3dd1c2
1159 changed files with 88228 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();
}