25 lines
447 B
C#
25 lines
447 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CarParkValidationAPI.Entities
|
|
{
|
|
public class ValidationPointDto
|
|
{
|
|
|
|
#region public Member
|
|
|
|
public int Id { get; set; }
|
|
[Required]
|
|
public string Description { get; set; }
|
|
|
|
public string Display { get; set; }
|
|
|
|
public bool? Active { get; set; }
|
|
#endregion
|
|
|
|
}
|
|
}
|