add architecture skeleton
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
namespace GymLogAI.Core.Enums;
|
||||
|
||||
public enum GoalType
|
||||
{
|
||||
Maintain = 0,
|
||||
Strength = 1,
|
||||
Hypertrophy = 2,
|
||||
Endurance = 3,
|
||||
WeightLoss = 4
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
namespace GymLogAI.Core.Enums;
|
||||
|
||||
public enum ParsingStatus
|
||||
{
|
||||
Pending = 0,
|
||||
Processing = 1,
|
||||
Parsed = 2,
|
||||
Failed = 3
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
namespace GymLogAI.Core.Enums;
|
||||
|
||||
public enum WorkoutSourceType
|
||||
{
|
||||
Manual = 0,
|
||||
Telegram = 1,
|
||||
Imported = 2
|
||||
}
|
||||
Reference in New Issue
Block a user