This repository has been archived by the owner on Apr 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix (Email Handler) properly parse GUID ID properties
Also, refactored some of the code to use the previous interface (to avoid breaking extension that rely on the interface not changing). See: #185
- Loading branch information
1 parent
73858ff
commit 3869f8c
Showing
5 changed files
with
64 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
namespace formulate.app.Forms.Handlers.Email | ||
{ | ||
|
||
// Namespaces. | ||
using System; | ||
|
||
/// <summary> | ||
/// An object that contains an ID that is a GUID. | ||
/// </summary> | ||
public class GuidId | ||
{ | ||
|
||
#region Properties | ||
|
||
/// <summary> | ||
/// The GUID ID. | ||
/// </summary> | ||
public Guid Id { get; set; } | ||
|
||
#endregion | ||
|
||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters