Files
Yaojia Wang 8caf8c1bcf
Some checks failed
Code Coverage / Generate Coverage Report (push) Has been cancelled
Tests / Run Tests (9.0.x) (push) Has been cancelled
Tests / Docker Build Test (push) Has been cancelled
Tests / Test Summary (push) Has been cancelled
Project Init
2025-11-03 00:04:19 +01:00

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>>;