ticket-system/source/ticketAPI/models/Core/Ticket.cs
2024-12-07 19:20:24 -05:00

13 lines
323 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; }
}