21 lines
374 B
C#
21 lines
374 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CarParkValidationAPI.Entities
|
|
{
|
|
public class ConcessionTypeDto
|
|
{
|
|
#region public Member
|
|
|
|
public int Id { get; set; }
|
|
public string Description { get; set; }
|
|
|
|
public string Display { get; set; }
|
|
|
|
public bool Active { get; set; }
|
|
#endregion
|
|
}
|
|
}
|