-
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.
- Loading branch information
Dhiogo Acioli
committed
Nov 3, 2024
1 parent
70b5ab2
commit 37763ee
Showing
211 changed files
with
12,762 additions
and
16,161 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
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,20 +1,20 @@ | ||
namespace MM.Shared.Enums | ||
{ | ||
public enum BodyMass | ||
public enum BodyType | ||
{ | ||
[Custom(Name = "UnderWeight", ResourceType = typeof(Resources.BodyMass))] | ||
UnderWeight = 1, | ||
[Custom(Name = "Thin / Slender")] | ||
Slim = 1, | ||
|
||
[Custom(Name = "NormalWeight", ResourceType = typeof(Resources.BodyMass))] | ||
NormalWeight = 2, | ||
[Custom(Name = "Average / Medium Build")] | ||
Average = 2, | ||
|
||
[Custom(Name = "Athletic", ResourceType = typeof(Resources.BodyMass))] | ||
[Custom(Name = "Athletic / Fit")] | ||
Athletic = 3, | ||
|
||
[Custom(Name = "OverWeight", ResourceType = typeof(Resources.BodyMass))] | ||
OverWeight = 4, | ||
[Custom(Name = "Curvy / Plus Size")] | ||
Curvy = 4, | ||
|
||
[Custom(Name = "Obese", ResourceType = typeof(Resources.BodyMass))] | ||
Obese = 5, | ||
[Custom(Name = "Fuller Figure")] | ||
Full = 5, | ||
} | ||
} |
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 ConflictResolutionStyle | ||
{ | ||
[Custom(Name = "Direct Resolution", Description = "Prefers to discuss and resolve conflicts immediately and openly.")] | ||
DirectResolution = 1, | ||
|
||
[Custom(Name = "Reflective Approach", Description = "Takes time to think and reflect before addressing conflicts.")] | ||
ReflectiveApproach = 2, | ||
|
||
[Custom(Name = "Avoidance/Denial", Description = "Tends to avoid conflicts or overlook their existence altogether.")] | ||
AvoidanceDenial = 3, | ||
} | ||
} |
Oops, something went wrong.