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