blob: 825f737d19f236de1be1a4344e5b5fe61ae93c76 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
namespace DevHive.Common.Constants
{
public static class ClassesConstants
{
public const string Data = "Data";
public const string Post = "The Post";
public const string Comment = "The Comment";
public const string User = "The User";
public const string Language = "The Language";
public const string Picture = "The Picture";
public const string Files = "The Files";
public const string Rating = "The Rating";
public const string Role = "The Role";
public const string Technology = "The Technology";
public const string Username = "The Username";
public const string Email = "The Email";
public const string Password = "Password";
public const string OneOrMoreFriends = "One or more Friends";
}
}
|