Skip to content

Commit

Permalink
add MaritalStatusType
Browse files Browse the repository at this point in the history
  • Loading branch information
Ali-YousefiTelori committed Nov 21, 2023
1 parent e02e52b commit 036eeed
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/CSharp/EasyMicroservices.Domain/DataTypes/GenderType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ public enum GenderType : byte
/// <summary>
///
/// </summary>
Male = 2,
Male = 6,
/// <summary>
///
/// </summary>
Female = 3
Female = 7
}
}
41 changes: 41 additions & 0 deletions src/CSharp/EasyMicroservices.Domain/DataTypes/MaritalStatusType.cs
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
}
}

0 comments on commit 036eeed

Please sign in to comment.