source:
Application/Models/DataTransferObjects/Company/RegisterCompanyDTO.cs
Last change on this file was f5f7c24, checked in by , 17 months ago | |
---|---|
|
|
File size: 441 bytes |
Line | |
---|---|
1 | using System; |
2 | using System.Collections.Generic; |
3 | using System.ComponentModel.DataAnnotations; |
4 | using System.Linq; |
5 | using System.Text; |
6 | using System.Threading.Tasks; |
7 | |
8 | namespace Models.DataTransferObjects.Company |
9 | { |
10 | public class RegisterCompanyDTO |
11 | { |
12 | public int CreatedBy { get; set; } |
13 | [Required] |
14 | public string CompanyName { get; set; } |
15 | [Required] |
16 | public string CompanyEmail { get; set; } |
17 | |
18 | } |
19 | } |
Note:
See TracBrowser
for help on using the repository browser.