aboutsummaryrefslogtreecommitdiff
path: root/Timeline/Entities/TimelineEntity.cs
blob: 3e592673a1ef46a520efab3184903d4a1c88a6f4 (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
56
57
58
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Timeline.Models;

namespace Timeline.Entities
{
#pragma warning disable CA2227 // Collection properties should be read only
    // TODO: Create index for this table.
    [Table("timelines")]
    public class TimelineEntity
    {
        [Column("id"), Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)]
        public long Id { get; set; }

        [Column("unique_id"), Required]
        public string UniqueId { get; set; } = default!;

        /// <summary>
        /// If null, then this timeline is a personal timeline.
        /// </summary>
        [Column("name")]
        public string? Name { get; set; }

        [Column("title")]
        public string? Title { get; set; }

        [Column("name_last_modified")]
        public DateTime NameLastModified { get; set; }

        [Column("description")]
        public string? Description { get; set; }

        [Column("owner")]
        public long OwnerId { get; set; }

        [ForeignKey(nameof(OwnerId))]
        public UserEntity Owner { get; set; } = default!;

        [Column("visibility")]
        public TimelineVisibility Visibility { get; set; }

        [Column("create_time")]
        public DateTime CreateTime { get; set; }

        [Column("last_modified")]
        public DateTime LastModified { get; set; }

        [Column("current_post_local_id")]
        public long CurrentPostLocalId { get; set; }

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

        public List<TimelinePostEntity> Posts { get; set; } = default!;
    }
#pragma warning restore CA2227 // Collection properties should be read only
}