10 lines
321 B
C#
10 lines
321 B
C#
using MediatR;
|
|
using ColaFlow.Modules.ProjectManagement.Application.DTOs;
|
|
|
|
namespace ColaFlow.Modules.ProjectManagement.Application.Queries.GetEpicsByProjectId;
|
|
|
|
/// <summary>
|
|
/// Query to get all Epics for a Project
|
|
/// </summary>
|
|
public sealed record GetEpicsByProjectIdQuery(Guid ProjectId) : IRequest<List<EpicDto>>;
|