Files
blazor-saas-hrm/Infrastructure/File/Google/GoogleCloudSettingsModel.cs
T
2026-07-21 14:22:06 +07:00

9 lines
249 B
C#

namespace Indotalent.Infrastructure.File.Google;
public class GoogleCloudSettingsModel
{
public bool IsUsed { get; set; }
public string ProjectId { get; set; } = string.Empty;
public string BucketName { get; set; } = string.Empty;
}