namespace FlowAPI.Application.DTOs.Habit { public class CreateHabitRecordDto { public Guid UserId { get; set; } public string HabitName { get; set; } = string.Empty; public DateTime? CheckedDate { get; set; } } public class HabitRecordResponseDto { 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; } } }