CaffGeek/MBACNationals

View on GitHub
Commands/Tournament/CreateSponsor.cs

Summary

Maintainability
A
0 mins
Test Coverage
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace MBACNationals.Tournament.Commands
{
    public class CreateSponsor
    {
        public Guid Id { get; set; }
        public string Year { get; set; }
        public string Name { get; set; }
        public string Website { get; set; }
        public byte[] Image { get; set; }
    }
}