AddParticipantCommand.cs 411 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10
using Ardalis.Result;
using PSManagement.SharedKernel.CQRS.Command;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;


namespace PSManagement.Application.Projects.UseCases.Commands.AddParticipant
{
11
    public record AddParticipantCommand(
12 13 14
        int ProjectId,
        int ParticipantId,
        int PartialTimeRatio,
15 16
        String Role
        ) : ICommand<Result>;
17
}