source: Application/Models/DataTransferObjects/Administrator/AdministratorCompaniesDTO.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: 573 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Threading.Tasks;
6
7namespace 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.