source: Application/Models/DatabaseModels/Registration.cs@ f5f7c24

Last change on this file since f5f7c24 was f5f7c24, checked in by 192011 <mk.snicker@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 421 bytes
Line 
1using System;
2using System.Collections.Generic;
3
4namespace ocrent;
5
6public partial class Registration
7{
8 public int RegistrationId { get; set; }
9
10 public string PlateNum { get; set; } = null!;
11
12 public DateOnly RegistredOn { get; set; }
13
14 public DateOnly ValidThru { get; set; }
15
16 public bool IsAvailable { get; set; }
17
18 public virtual ICollection<Vehicle> Vehicles { get; } = new List<Vehicle>();
19}
Note: See TracBrowser for help on using the repository browser.