add architecture skeleton

This commit is contained in:
2026-04-19 13:12:04 +03:00
parent 312708531f
commit 2738f31f26
84 changed files with 2710 additions and 70 deletions
+10
View File
@@ -0,0 +1,10 @@
namespace GymLogAI.Core.Enums;
public enum GoalType
{
Maintain = 0,
Strength = 1,
Hypertrophy = 2,
Endurance = 3,
WeightLoss = 4
}
+9
View File
@@ -0,0 +1,9 @@
namespace GymLogAI.Core.Enums;
public enum ParsingStatus
{
Pending = 0,
Processing = 1,
Parsed = 2,
Failed = 3
}
+8
View File
@@ -0,0 +1,8 @@
namespace GymLogAI.Core.Enums;
public enum WorkoutSourceType
{
Manual = 0,
Telegram = 1,
Imported = 2
}