Last change
on this file since f5f7c24 was f5f7c24, checked in by 192011 <mk.snicker@…>, 17 months ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
282 bytes
|
Rev | Line | |
---|
[f5f7c24] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 |
|
---|
| 4 | namespace ocrent;
|
---|
| 5 |
|
---|
| 6 | public partial class Administrator
|
---|
| 7 | {
|
---|
| 8 | public int UserId { get; set; }
|
---|
| 9 |
|
---|
| 10 | public virtual ICollection<Company> Companies { get; } = new List<Company>();
|
---|
| 11 |
|
---|
| 12 | public virtual User User { get; set; } = null!;
|
---|
| 13 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.