summaryrefslogtreecommitdiff
path: root/Project-Unite/Models
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-04-30 10:55:47 -0400
committerMichael <[email protected]>2017-04-30 10:55:47 -0400
commitc9716799cc49c24d691a612712bdbd860e46e8b6 (patch)
treef1385413e902da6d35dab806de47ee19f504cb7f /Project-Unite/Models
parent3d7126efd77deadac5f6be00c18e06eb62be49e3 (diff)
downloadproject-unite-c9716799cc49c24d691a612712bdbd860e46e8b6.tar.gz
project-unite-c9716799cc49c24d691a612712bdbd860e46e8b6.tar.bz2
project-unite-c9716799cc49c24d691a612712bdbd860e46e8b6.zip
this shouldn't be a POST
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; }