CaffGeek/MBACNationals

View on GitHub
Commands/Contingent/SaveReservationInstructions.cs

Summary

Maintainability
A
0 mins
Test Coverage
using System;

namespace MBACNationals.Contingent.Commands
{
    public class SaveReservationInstructions
    {
        public Guid Id { get; set; }
        public string Province { get; set; }
        public string Instructions { get; set; }
    }
}