ENEI2019-Public/api/Dtos/UserForListDto.cs

22 lines
630 B
C#
Executable File
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
namespace api.Dtos
{
public class UserForListDto
{
public int Id{get;set;}
public string Username{get;set;}
public string FullName {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 linkedIn{get;set;}
public string QRcode{get;set;}
public string Degree{get;set;}
public string ProfileIcon {get;set;}
public string About{get;set;}
public string PhotoUrl{get;set;}
}
}