-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e02e52b
commit 036eeed
Showing
2 changed files
with
43 additions
and
2 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
41 changes: 41 additions & 0 deletions
41
src/CSharp/EasyMicroservices.Domain/DataTypes/MaritalStatusType.cs
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,41 @@ | ||
namespace EasyMicroservices.Domain.DataTypes | ||
{ | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public enum MaritalStatusType : byte | ||
{ | ||
/// <summary> | ||
/// value is none, Never use the None to return values | ||
/// </summary> | ||
None = 0, | ||
/// <summary> | ||
/// error value is default | ||
/// </summary> | ||
Default = 1, | ||
/// <summary> | ||
/// for the filter values from web admin panel you can sent all for types | ||
/// </summary> | ||
All = 2, | ||
/// <summary> | ||
/// there is other error that is not in the types | ||
/// </summary> | ||
Other = 3, | ||
/// <summary> | ||
/// the error type is uknown to us | ||
/// </summary> | ||
Unknown = 4, | ||
/// <summary> | ||
/// there is nothing to show or validate error | ||
/// </summary> | ||
Nothing = 5, | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
Married = 6, | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
Single = 7 | ||
} | ||
} |