source:
Application/Models/DatabaseModels/Client.cs
Last change on this file was f5f7c24, checked in by , 17 months ago | |
---|---|
|
|
File size: 371 bytes |
Line | |
---|---|
1 | using System; |
2 | using System.Collections.Generic; |
3 | |
4 | namespace ocrent; |
5 | |
6 | public partial class Client |
7 | { |
8 | public int UserId { get; set; } |
9 | |
10 | public virtual ICollection<Contract> Contracts { get; } = new List<Contract>(); |
11 | |
12 | public virtual ICollection<PaymentCard> PaymentCards { get; } = new List<PaymentCard>(); |
13 | |
14 | public virtual User User { get; set; } = null!; |
15 | } |
Note:
See TracBrowser
for help on using the repository browser.