10 lines
304 B
C#
10 lines
304 B
C#
namespace Socialize.Api.Infrastructure.BlobStorage.Contracts;
|
|
|
|
public static class SubDirectoryNames
|
|
{
|
|
public const string Profile = "profile";
|
|
public const string Contents = "contents";
|
|
public const string Albums = "albums";
|
|
public const string FeedbackScreenshots = "screenshots";
|
|
}
|