namespace FlowAPI.Domain.Entities { public class HabitRecord { public Guid Id { get; set; } public Guid UserId { get; set; } public string HabitName { get; set; } = string.Empty; public DateTime CheckedDate { get; set; } public int StreakCount { get; set; } // Navigation properties public User User { get; set; } = null!; } }