CaffGeek/MBACNationals

View on GitHub
Commands/Participant/AddCoachToTeam.cs

Summary

Maintainability
A
0 mins
Test Coverage
using System;

namespace MBACNationals.Participant.Commands
{
    public class AddCoachToTeam
    {
        public Guid Id { get; set; }
        public Guid TeamId { get; set; }
    }
}