source:
Application/Models/DatabaseModels/Registration.cs
Last change on this file was f5f7c24, checked in by , 17 months ago | |
---|---|
|
|
File size: 421 bytes |
Line | |
---|---|
1 | using System; |
2 | using System.Collections.Generic; |
3 | |
4 | namespace ocrent; |
5 | |
6 | public 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.