summaryrefslogtreecommitdiffstats
path: root/projecttemplates/RelyingPartyLogic/Model.ClientAuthorization.cs
diff options
context:
space:
mode:
Diffstat (limited to 'projecttemplates/RelyingPartyLogic/Model.ClientAuthorization.cs')
-rw-r--r--projecttemplates/RelyingPartyLogic/Model.ClientAuthorization.cs26
1 files changed, 0 insertions, 26 deletions
diff --git a/projecttemplates/RelyingPartyLogic/Model.ClientAuthorization.cs b/projecttemplates/RelyingPartyLogic/Model.ClientAuthorization.cs
deleted file mode 100644
index 4b1b8b1..0000000
--- a/projecttemplates/RelyingPartyLogic/Model.ClientAuthorization.cs
+++ /dev/null
@@ -1,26 +0,0 @@
-//-----------------------------------------------------------------------
-// <copyright file="Model.ClientAuthorization.cs" company="Outercurve Foundation">
-// Copyright (c) Outercurve Foundation. All rights reserved.
-// </copyright>
-//-----------------------------------------------------------------------
-
-namespace RelyingPartyLogic {
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using DotNetOpenAuth.OAuth.ChannelElements;
-
- public partial class ClientAuthorization {
- /// <summary>
- /// Initializes a new instance of the <see cref="ClientAuthorization"/> class.
- /// </summary>
- public ClientAuthorization() {
- this.CreatedOnUtc = DateTime.UtcNow;
- }
-
- partial void OnCreatedOnUtcChanging(DateTime value) {
- Utilities.VerifyThrowNotLocalTime(value);
- }
- }
-}