TicketType.cs
449 Bytes
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace RamaSignup
{
class TicketType
{
public int Id;
public string Description;
public TicketType(int id, string description)
{
this.Id = id;
this.Description = description;
}
public override string ToString()
{
return this.Description;
}
}
}