CaffGeek/MBACNationals

View on GitHub
Commands/Participant/AddParticipantToContingent.cs

Summary

Maintainability
A
0 mins
Test Coverage
using System;

namespace MBACNationals.Participant.Commands
{
    public class AddParticipantToContingent
    {
        public Guid Id { get; set; }
        public Guid ContingentId { get; set; }
    }
}