aboutsummaryrefslogtreecommitdiff
path: root/Timeline/Services/EntityNames.cs
blob: 0ce1de3b5c5eb902f4daf471a1bdee374a308a9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;

namespace Timeline.Services
{
    public static class EntityNames
    {
        public const string User = "User";
        public const string Timeline = "Timeline";
        public const string TimelinePost = "TimelinePost";
    }
}