feat: All models added to game service

This commit is contained in:
2025-09-29 16:51:50 +03:00
parent 56c874e220
commit 0342562187
8 changed files with 150 additions and 1 deletions

11
Models/Enums/Character.cs Normal file
View File

@@ -0,0 +1,11 @@
namespace GamificationService.Models.Enums;
public enum Character
{
None,
Assistant,
Pilot,
Janitor,
Administrator,
Mechanic
}

View File

@@ -0,0 +1,18 @@
namespace GamificationService.Models.Enums;
public enum CharacterAnimation
{
Neutral,
Happy,
Laughter,
Mock,
Sad,
Crying,
Annoyed,
Angry,
Threats,
Wave,
Silhouette,
Scared,
Embarassed
}

View File

@@ -0,0 +1,9 @@
namespace GamificationService.Models.Enums;
public enum MessageStyle
{
Normal,
Loud,
Think,
Action
}