-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
living situation / family approval / nationality
- Loading branch information
Dhiogo Acioli
committed
Oct 12, 2024
1 parent
2d2d6a1
commit 70b5ab2
Showing
12 changed files
with
76 additions
and
20 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
namespace MM.Shared.Enums | ||
{ | ||
public enum FamilyApproval | ||
{ | ||
[Custom(Name = "No", Description = "The family does not influence or participate in partner decisions.")] | ||
No = 1, | ||
|
||
[Custom(Name = "Yes (Partially)", Description = "The family has some influence or provides input, but the final decision is shared.")] | ||
YesModerate = 3, | ||
|
||
[Custom(Name = "Yes (Fully)", Description = "The family has significant influence or makes the final decision regarding the partner.")] | ||
YesHeavy = 4 | ||
} | ||
} |
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,23 @@ | ||
namespace MM.Shared.Enums | ||
{ | ||
public enum LivingSituation | ||
{ | ||
[Custom(Name = "Alone", Description = "Lives independently, without other people in the household.")] | ||
Alone = 1, | ||
|
||
[Custom(Name = "With Family", Description = "Shares a household with family members, such as parents, siblings, or extended relatives.")] | ||
WithFamily = 2, | ||
|
||
[Custom(Name = "With Friends", Description = "Shares a living space with friends or close acquaintances.")] | ||
WithFriends = 3, | ||
|
||
[Custom(Name = "With Ex-Partner", Description = "Continues to live with a former romantic partner.")] | ||
WithExPartner = 4, | ||
|
||
[Custom(Name = "With Roommates", Description = "Shares living arrangements with individuals who are neither family nor close friends.")] | ||
WithRoommates = 5, | ||
|
||
[Custom(Name = "Other", Description = "Has a different living situation that doesn't fit common categories.")] | ||
Other = 9 | ||
} | ||
} |
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
2 changes: 1 addition & 1 deletion
2
MM.Shared/Models/Profile/Resources/ProfileBasicModel.Designer.cs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -1 +1 @@ | ||
2024.10.09 | ||
2024.10.12 |