Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 | using System.Threading.Tasks;
|
---|
6 |
|
---|
7 | namespace Models.DataTransferObjects.Administrator
|
---|
8 | {
|
---|
9 | public class AdministratorCompaniesDTO
|
---|
10 | {
|
---|
11 | public int CompanyId { get; set; }
|
---|
12 | public string CompanyName { get; set; }
|
---|
13 | public string CompanyEmail { get; set; }
|
---|
14 | public bool IsApproved { get; set; }
|
---|
15 | public int? BusinessUserId { get; set; }
|
---|
16 | public string BusinessUserName { get; set; }
|
---|
17 | public string BusinessUserEmail { get; set; }
|
---|
18 |
|
---|
19 |
|
---|
20 | }
|
---|
21 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.