source: Application/Models/DatabaseModels/Company.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: 821 bytes
RevLine 
[f5f7c24]1using System;
2using System.Collections.Generic;
3
4namespace ocrent;
5
6public partial class Company
7{
8 public int CompanyId { get; set; }
9
10 public string CompanyName { get; set; } = null!;
11
12 public string CompanyEmail { get; set; } = null!;
13
14 public DateOnly CreatedOn { get; set; }
15
16 public int CreatedBy { get; set; }
17
18 public DateOnly? ModifiedOn { get; set; }
19
20 public int? ModifiedBy { get; set; }
21
22 public int? BusinessUserId { get; set; }
23
24 public int? AdministratorId { get; set; }
25
26 public virtual Administrator? Administrator { get; set; }
27
28 public virtual BusinessUser? BusinessUser { get; set; }
29
30 public virtual ICollection<DeliveryMan> DeliveryMen { get; } = new List<DeliveryMan>();
31
32 public virtual ICollection<Location> Locations { get; } = new List<Location>();
33}
Note: See TracBrowser for help on using the repository browser.