namespace OliverBooth.Data.Blog; /// /// An enumeration of the possible visibilities of a blog post. /// public enum BlogPostVisibility { /// /// 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 }