diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2012-02-19 21:34:30 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2012-02-19 21:34:30 -0800 |
commit | 2746ec1fabc080c0ce8b088fa342e5ba1178ba70 (patch) | |
tree | 044bdc44a437a744ec6534ef5586625dc828fc59 /samples/OAuthAuthorizationServer/Code/DataClasses.designer.cs | |
parent | f1837d5eb51cb3ed948d72048e5827332e506a71 (diff) | |
download | DotNetOpenAuth-2746ec1fabc080c0ce8b088fa342e5ba1178ba70.zip DotNetOpenAuth-2746ec1fabc080c0ce8b088fa342e5ba1178ba70.tar.gz DotNetOpenAuth-2746ec1fabc080c0ce8b088fa342e5ba1178ba70.tar.bz2 |
Fixed build breaks.
Diffstat (limited to 'samples/OAuthAuthorizationServer/Code/DataClasses.designer.cs')
-rw-r--r-- | samples/OAuthAuthorizationServer/Code/DataClasses.designer.cs | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/samples/OAuthAuthorizationServer/Code/DataClasses.designer.cs b/samples/OAuthAuthorizationServer/Code/DataClasses.designer.cs index 5035753..a1e4b83 100644 --- a/samples/OAuthAuthorizationServer/Code/DataClasses.designer.cs +++ b/samples/OAuthAuthorizationServer/Code/DataClasses.designer.cs @@ -272,6 +272,8 @@ namespace OAuthAuthorizationServer.Code private string _Name; + private int _ClientType; + private EntitySet<ClientAuthorization> _OAuthTokens; #region Extensibility Method Definitions @@ -288,6 +290,8 @@ namespace OAuthAuthorizationServer.Code partial void OnCallbackChanged(); partial void OnNameChanging(string value); partial void OnNameChanged(); + partial void OnClientTypeChanging(int value); + partial void OnClientTypeChanged(); #endregion public Client() @@ -396,6 +400,26 @@ namespace OAuthAuthorizationServer.Code } } + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ClientType")] + public int ClientType + { + get + { + return this._ClientType; + } + set + { + if ((this._ClientType != value)) + { + this.OnClientTypeChanging(value); + this.SendPropertyChanging(); + this._ClientType = value; + this.SendPropertyChanged("ClientType"); + this.OnClientTypeChanged(); + } + } + } + [global::System.Data.Linq.Mapping.AssociationAttribute(Name="Client_ClientAuthorization", Storage="_OAuthTokens", ThisKey="ClientId", OtherKey="ClientId")] public EntitySet<ClientAuthorization> ClientAuthorizations { |