Files
PlaylistShared/PlaylistShared.Shared/Enums/ViewPermission.cs
2026-04-13 14:16:44 +03:00

12 lines
374 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
namespace PlaylistShared.Shared.Enums;
/// <summary>Кто может просматривать плейлист.</summary>
public enum ViewPermission
{
/// <summary>Все, включая неавторизованных.</summary>
Everyone,
/// <summary>Только авторизованные пользователи.</summary>
AuthorizedOnly,
}