FlowAPI / FlowAPI.Domain /Entities /HabitRecord.cs
danylokhodus's picture
init
b9c7f0e
Raw
History Blame Contribute Delete
396 Bytes
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!;
}
}