namespace Timeline.Models
{
    public enum TimelineVisibility
    {
        /// 
        /// All people including those without accounts.
        /// 
        Public,
        /// 
        /// Only people signed in.
        /// 
        Register,
        /// 
        /// Only member.
        /// 
        Private
    }
    public static class TimelinePostContentTypes
    {
        public const string Text = "text";
        public const string Image = "image";
    }
}