You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
using System; |
|
|
using System.Collections.Generic; |
|
|
|
|
|
namespace api.Dtos |
|
|
{ |
|
|
public class UserForDetailedDto |
|
|
{ |
|
|
public string FullName {get;set;} |
|
|
public int Id{get;set;} |
|
|
public string Username{get;set;} |
|
|
public string Gender {get;set;} |
|
|
public int Age{get;set;} |
|
|
public int Phone{get;set;} |
|
|
public string University{get;set;} |
|
|
public string Adress{get;set;} |
|
|
public string Country{get;set;} |
|
|
public string City{get;set;} |
|
|
public string linkedIn{get;set;} |
|
|
public DateTime LastLogin {get;set;} |
|
|
public DateTime Registed{get;set;} |
|
|
public string QRcode{get;set;} |
|
|
public string Role{get;set;} |
|
|
public string Degree{get;set;} |
|
|
public int SchoolYear{get;set;} |
|
|
public string ProfileIcon {get;set;} |
|
|
public string Company{get;set;} |
|
|
public string Position{get;set;} |
|
|
public string About{get;set;} |
|
|
public ICollection<PhotosForDetailedDto> Photos {get;set;} |
|
|
|
|
|
|
|
|
} |
|
|
} |