Last change
on this file since f5f7c24 was f5f7c24, checked in by 192011 <mk.snicker@…>, 17 months ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
441 bytes
|
Rev | Line | |
---|
[f5f7c24] | 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.