ENEI2019-Public/api/Dtos/UserForUpdateDto.cs

9 lines
188 B
C#
Raw Normal View History

2018-12-12 15:17:08 +00:00
namespace api.Dtos
{
public class UserForUpdateDto
{
public string about{get;set;}
public string university{get;set;}
public string degree{get;set;}
}
}