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

13 lines
322 B
C#

using models.Enumerations;
namespace models.Core;
public class Ticket
{
public Guid Id { get; set; }
public Guid SeasonId { get; set; }
public Guid EventId { get; set; }
public TicketType Type { get; set; }
public required string QrCode { get; set; }
public required Patron Patron { get; set; }
}