27 lines
523 B
C#
27 lines
523 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.IO;
|
|
using System.Runtime.Serialization;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace CarParkValidationAPI.Models
|
|
{
|
|
|
|
|
|
public class ValidationPoint
|
|
{
|
|
[Key]
|
|
public int Id { get; set; }
|
|
public string Description { get; set; }
|
|
|
|
public string? DisplayName { get; set; }
|
|
|
|
public bool? Active { get; set; }
|
|
|
|
public DateTime? LastModified { get; set; }
|
|
public string? LastModifiedId { get; set; }
|
|
}
|
|
}
|