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
+21
View File
@@ -0,0 +1,21 @@
using GymLogAI.Core.Enums;
namespace GymLogAI.Core.Entities;
public class TelegramMessage
{
public Guid Id { get; set; }
public Guid UserId { get; set; }
public long TelegramChatId { get; set; }
public int TelegramMessageId { get; set; }
public string Text { get; set; } = string.Empty;
public DateTime SentAtUtc { get; set; }
public DateTime ImportedAtUtc { get; set; }
public ParsingStatus ParsingStatus { get; set; }
public string? ParsingError { get; set; }
public Guid? WorkoutId { get; set; }
public DateTime? ParsedAtUtc { get; set; }
public User? User { get; set; }
public Workout? Workout { get; set; }
}