aboutsummaryrefslogtreecommitdiff
path: root/BackEnd/Timeline/Models/TimelineVisibility.cs
blob: 7c1e309b48e6d9e48f1fc7849aff0d7a86c97701 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace Timeline.Models
{
    public enum TimelineVisibility
    {
        /// <summary>
        /// All people including those without accounts.
        /// </summary>
        Public,
        /// <summary>
        /// Only people signed in.
        /// </summary>
        Register,
        /// <summary>
        /// Only member.
        /// </summary>
        Private
    }
}