aboutsummaryrefslogtreecommitdiff
path: root/BackEnd/Timeline/Services/EntityTypes.cs
blob: 89c0a7ec7392b081311372ee8920e0a2a4c8cfa3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
namespace Timeline.Services
{
    public static class EntityTypes
    {
        public static EntityType Default { get; } = new EntityType(EntityNames.Default);
        public static EntityType User { get; } = new EntityType(EntityNames.User);
        public static EntityType Timeline { get; } = new EntityType(EntityNames.Timeline);
        public static EntityType TimelinePost { get; } = new EntityType(EntityNames.TimelinePost);
        public static EntityType TimelinePostData { get; } = new EntityType(EntityNames.TimelinePostData);
        public static EntityType BookmarkTimeline { get; } = new EntityType(EntityNames.BookmarkTimeline);
        public static EntityType HighlightTimeline { get; } = new EntityType(EntityNames.HighlightTimeline);
    }
}