blob: fa3c0eb3fb8a54c8ca7dfee6aa4b35eaaed2eb70 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
using System;
using System.Collections.Generic;
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
}
public static class TimelinePostContentTypes
{
public const string Text = "text";
public const string Image = "image";
}
}
|