source:
Application/Models/DataTransferObjects/Company/UserCompaniesDTO.cs
Last change on this file was f5f7c24, checked in by , 17 months ago | |
---|---|
|
|
File size: 401 bytes |
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.Company |
8 | { |
9 | public class UserCompaniesDTO |
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 | |
16 | } |
17 | } |
Note:
See TracBrowser
for help on using the repository browser.