42 lines
925 B
C#
42 lines
925 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CarParkValidationAPI.Entities
|
|
{
|
|
public class ConcessionValidationExtDto: ConcessionValidationDto
|
|
{
|
|
public string ConcessionType { get; set; }
|
|
public string ValidationPoint { get; set; }
|
|
|
|
|
|
}
|
|
public partial class ConcessionValidationDto
|
|
{
|
|
#region public Member
|
|
|
|
public int Id { get; set; }
|
|
public DateTime ValidateDate { get; set; }
|
|
|
|
public string ConcessionCard { get; set; }
|
|
|
|
public string ConcessionHolder { get; set; }
|
|
|
|
public bool ConcessionExpiry { get; set; }
|
|
|
|
public int ConcessionTypeId { get; set; }
|
|
|
|
public string StafflinkNo { get; set; }
|
|
|
|
public int ValidationPointId { get; set; }
|
|
|
|
public bool Active { get; set; }
|
|
|
|
public string StaffFirstName { get; set; }
|
|
public string StaffLastName { get; set; }
|
|
public string StaffEmail { get; set; }
|
|
#endregion
|
|
}
|
|
}
|