ticket-system/source/ticketAPI/models/Request/AddTicket.cs
Tara Wilson 2358ef1c96 Adding patron info
Adding several components
Restructuring UI
2024-12-06 19:52:20 -05:00

12 lines
280 B
C#

using models.Core;
using models.Enumerations;
namespace models.Request;
public class AddTicket
{
public TicketType Type { get; set; }
public Guid EventId { get; set; }
public Guid SeasonId { get; set; } = Guid.Empty;
public required Patron Patron { get; set; }
}