Files
blazor-scm/Infrastructure/File/Avatar/AvatarStorageModel.cs
T
2026-07-21 14:28:43 +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;
}