#67 added blob storage service + endpoints for profile picture. WIP
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
namespace Hutopy.Application.AzureBlobStorage.Constants;
|
||||
|
||||
public static class CommonFileNames
|
||||
{
|
||||
public static string ProfilePicture = "profilePicture";
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
namespace Hutopy.Application.AzureBlobStorage.Constants;
|
||||
|
||||
public static class ContainerNames
|
||||
{
|
||||
public static string Users = "users";
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
namespace Hutopy.Application.AzureBlobStorage.Constants;
|
||||
|
||||
public static class SubDirectoryNames
|
||||
{
|
||||
public static string Profile = "profile";
|
||||
public static string Posts = "posts";
|
||||
}
|
||||
Reference in New Issue
Block a user