CaffGeek/MBACNationals

View on GitHub
Commands/Tournament/ReorderSponsor.cs

Summary

Maintainability
A
0 mins
Test Coverage
using System;

namespace MBACNationals.Tournament.Commands
{
    public class ReorderSponsor
    {
        public Guid Id { get; set; }
        public string Name { get; set; }
        public int Position { get; set; }
    }
}