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