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