aboutsummaryrefslogtreecommitdiff
path: root/Timeline/Models/Timeline.cs
blob: 752c698dc043e3d8d3f79563711ebc7da0b38435 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
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 class TimelinePostInfo
    {
        public long Id { get; set; }

        public string? Content { get; set; }

        public DateTime Time { get; set; }

        /// <summary>
        /// The username of the author.
        /// </summary>
        public string Author { get; set; } = default!;
    }

    [System.Diagnostics.CodeAnalysis.SuppressMessage("Usage", "CA2227:Collection properties should be read only", Justification = "This is a DTO class.")]
    public class BaseTimelineInfo
    {
        public string? Description { get; set; }

        /// <summary>
        /// The username of the owner.
        /// </summary>
        public string Owner { get; set; } = default!;

        public TimelineVisibility Visibility { get; set; }

        public List<string> Members { get; set; } = default!;
    }

    public class TimelineInfo : BaseTimelineInfo
    {
        public string Name { get; set; } = default!;
    }
}