Files
2026-07-21 13:59:38 +07:00

9 lines
247 B
C#

namespace Indotalent.Infrastructure.File.Avatar;
public class AvatarStorageModel
{
public bool IsUsed { get; set; }
public string StoragePath { get; set; } = "wwwroot/avatars";
public string BaseUrl { get; set; } = string.Empty;
}