9 lines
277 B
C#
9 lines
277 B
C#
namespace Socialize.Api.Infrastructure.BlobStorage.Contracts;
|
|
|
|
internal static class CommonFileNames
|
|
{
|
|
public const string ProfilePicture = "profilePicture";
|
|
public const string LogoPicture = "logoPicture";
|
|
public const string BannerPicture = "bannerPicture";
|
|
}
|