Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 |
|
---|
4 | namespace ocrent;
|
---|
5 |
|
---|
6 | public partial class Location
|
---|
7 | {
|
---|
8 | public int LocationId { get; set; }
|
---|
9 |
|
---|
10 | public string City { get; set; } = null!;
|
---|
11 |
|
---|
12 | public string Street { get; set; } = null!;
|
---|
13 |
|
---|
14 | public int StreetNumber { get; set; }
|
---|
15 |
|
---|
16 | public int CompanyId { get; set; }
|
---|
17 |
|
---|
18 | public virtual Company Company { get; set; } = null!;
|
---|
19 |
|
---|
20 | public virtual ICollection<Vehicle> Vehicles { get; } = new List<Vehicle>();
|
---|
21 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.