summaryrefslogtreecommitdiffstats
path: root/projecttemplates/WebFormsRelyingParty/Model.User.cs
diff options
context:
space:
mode:
Diffstat (limited to 'projecttemplates/WebFormsRelyingParty/Model.User.cs')
-rw-r--r--projecttemplates/WebFormsRelyingParty/Model.User.cs19
1 files changed, 0 insertions, 19 deletions
diff --git a/projecttemplates/WebFormsRelyingParty/Model.User.cs b/projecttemplates/WebFormsRelyingParty/Model.User.cs
deleted file mode 100644
index 1493603..0000000
--- a/projecttemplates/WebFormsRelyingParty/Model.User.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-//-----------------------------------------------------------------------
-// <copyright file="Model.User.cs" company="Andrew Arnott">
-// Copyright (c) Andrew Arnott. All rights reserved.
-// </copyright>
-//-----------------------------------------------------------------------
-
-namespace WebFormsRelyingParty {
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
-
- public partial class User {
- partial void OnEmailAddressChanged() {
- // Whenever the email address is changed, we must reset its verified status.
- this.EmailAddressVerified = false;
- }
- }
-}