forked from ddrilling/AsbCloudServer
a7962492af
Add UserDto into FileInfoDto. Add CompanyDto into UserDto.
16 lines
303 B
C#
16 lines
303 B
C#
namespace AsbCloudApp.Data
|
|
{
|
|
public class UserDto : UserBaseDto
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public int? IdCompany { get; set; }
|
|
|
|
public int? IdRole { get; set; }
|
|
|
|
public string Password { get; set; }
|
|
|
|
public CompanyDto Company { get; set; }
|
|
}
|
|
}
|