namespace OliverBooth.Common.Data;
///
/// An enumeration of the possible visibilities of a blog post.
///
public enum Visibility
{
///
/// Used for filtering results. Represents all visibilities.
///
None = -1,
///
/// The post is private and only visible to the author, or those with the password.
///
Private,
///
/// The post is unlisted and only visible to those with the link.
///
Unlisted,
///
/// The post is published and visible to everyone.
///
Published
}