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