23 строки
464 B
C#
23 строки
464 B
C#
// <copyright file="ContainerIdentifier.cs" company="Microsoft">
|
|
// Copyright (c) Microsoft. All rights reserved.
|
|
// </copyright>
|
|
|
|
namespace SocialPlus.Server.Blobs
|
|
{
|
|
/// <summary>
|
|
/// Container identifier
|
|
/// </summary>
|
|
public enum ContainerIdentifier
|
|
{
|
|
/// <summary>
|
|
/// Images container
|
|
/// </summary>
|
|
Images,
|
|
|
|
/// <summary>
|
|
/// Blobs container
|
|
/// </summary>
|
|
Blobs
|
|
}
|
|
}
|