source: Application/Models/DatabaseModels/Contract.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: 940 bytes
Line 
1using System;
2using System.Collections.Generic;
3
4namespace ocrent;
5
6public partial class Contract
7{
8 public DateOnly SignedDate { get; set; }
9
10 public int UserId { get; set; }
11
12 public int VehicleId { get; set; }
13
14 public int DeliveryManId { get; set; }
15
16 public int? PaymentId { get; set; }
17
18 public int? CardId { get; set; }
19
20 public string Address { get; set; } = null!;
21
22 public DateOnly StartDate { get; set; }
23
24 public DateOnly EndDate { get; set; }
25
26 public string? Review { get; set; }
27
28 public bool? Hasnavigation { get; set; }
29
30 public bool? Hasgreencard { get; set; }
31
32 public bool? Hasbabyseat { get; set; }
33
34 public bool? Hasroofrack { get; set; }
35
36 public virtual DeliveryMan DeliveryMan { get; set; } = null!;
37
38 public virtual Payment? Payment { get; set; }
39
40 public virtual Client User { get; set; } = null!;
41
42 public virtual Vehicle Vehicle { get; set; } = null!;
43}
Note: See TracBrowser for help on using the repository browser.