Files
Yaojia Wang 014d62bcc2 Project Init
🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-02 23:55:18 +01:00

19 lines
647 B
C#

namespace ColaFlow.Modules.ProjectManagement.Application.DTOs;
/// <summary>
/// Data Transfer Object for Epic
/// </summary>
public record EpicDto
{
public Guid Id { get; init; }
public string Name { get; init; } = string.Empty;
public string Description { get; init; } = string.Empty;
public Guid ProjectId { get; init; }
public string Status { get; init; } = string.Empty;
public string Priority { get; init; } = string.Empty;
public Guid CreatedBy { get; init; }
public DateTime CreatedAt { get; init; }
public DateTime? UpdatedAt { get; init; }
public List<StoryDto> Stories { get; init; } = new();
}