diff options
Diffstat (limited to 'samples/OAuthServiceProvider/App_Code/DataClasses.designer.cs')
-rw-r--r-- | samples/OAuthServiceProvider/App_Code/DataClasses.designer.cs | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/samples/OAuthServiceProvider/App_Code/DataClasses.designer.cs b/samples/OAuthServiceProvider/App_Code/DataClasses.designer.cs index d9c2ba4..998f781 100644 --- a/samples/OAuthServiceProvider/App_Code/DataClasses.designer.cs +++ b/samples/OAuthServiceProvider/App_Code/DataClasses.designer.cs @@ -633,6 +633,8 @@ public partial class OAuthToken : INotifyPropertyChanging, INotifyPropertyChange private string _RequestTokenVerifier; + private string _RequestTokenCallback; + private EntityRef<OAuthConsumer> _OAuthConsumer; private EntityRef<User> _User; @@ -659,6 +661,8 @@ public partial class OAuthToken : INotifyPropertyChanging, INotifyPropertyChange partial void OnScopeChanged(); partial void OnRequestTokenVerifierChanging(string value); partial void OnRequestTokenVerifierChanged(); + partial void OnRequestTokenCallbackChanging(string value); + partial void OnRequestTokenCallbackChanged(); #endregion public OAuthToken() @@ -856,6 +860,26 @@ public partial class OAuthToken : INotifyPropertyChanging, INotifyPropertyChange } } + [Column(Storage="_RequestTokenCallback")] + public string RequestTokenCallback + { + get + { + return this._RequestTokenCallback; + } + set + { + if ((this._RequestTokenCallback != value)) + { + this.OnRequestTokenCallbackChanging(value); + this.SendPropertyChanging(); + this._RequestTokenCallback = value; + this.SendPropertyChanged("RequestTokenCallback"); + this.OnRequestTokenCallbackChanged(); + } + } + } + [Association(Name="OAuthConsumer_OAuthToken", Storage="_OAuthConsumer", ThisKey="ConsumerId", OtherKey="ConsumerId", IsForeignKey=true, DeleteOnNull=true, DeleteRule="CASCADE")] public OAuthConsumer OAuthConsumer { |