source: Application/Models/DatabaseModels/Location.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: 465 bytes
Line 
1using System;
2using System.Collections.Generic;
3
4namespace ocrent;
5
6public 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.