21 lines
337 B
C#
21 lines
337 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CarParkValidationAPI.Entities
|
|
{
|
|
public class LookupCodeDto
|
|
{
|
|
public int Id
|
|
{
|
|
get; set;
|
|
}
|
|
public string Description
|
|
{
|
|
get; set;
|
|
}
|
|
|
|
}
|
|
}
|