12 lines
281 B
C#
12 lines
281 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; }
|
|
} |