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
+14
View File
@@ -0,0 +1,14 @@
namespace GymLogAI.Core.Entities;
public class User
{
public Guid Id { get; set; }
public long TelegramUserId { get; set; }
public string? Username { get; set; }
public string? FirstName { get; set; }
public string? LastName { get; set; }
public DateTime CreatedAtUtc { get; set; }
public List<TelegramMessage> TelegramMessages { get; set; } = [];
public List<Workout> Workouts { get; set; } = [];
}