summaryrefslogtreecommitdiff
path: root/Project-Unite/Models
diff options
context:
space:
mode:
Diffstat (limited to 'Project-Unite/Models')
-rw-r--r--Project-Unite/Models/IdentityModels.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/Project-Unite/Models/IdentityModels.cs b/Project-Unite/Models/IdentityModels.cs
index f864527..e11d675 100644
--- a/Project-Unite/Models/IdentityModels.cs
+++ b/Project-Unite/Models/IdentityModels.cs
@@ -247,8 +247,18 @@ namespace Project_Unite.Models
public DbSet<ForumPost> ForumPosts { get; set; }
public DbSet<Story> Stories { get; set; }
public DbSet<View> Views { get; set; }
+ public DbSet<OAuthToken> OAuthTokens { get; set; }
}
+ public class OAuthToken
+ {
+ public string Id { get; set; }
+ public string UserId { get; set; }
+ public string AppName { get; set; }
+ public string AppDescription { get; set; }
+ public string Version { get; set; }
+ }
+
public class ReadPost
{
public string Id { get; set; }