ENEI2019-Public/api/Dtos/updateUsersDTO.cs

10 lines
236 B
C#
Executable File

namespace api.Dtos
{
public class updateUsersDTO
{
public string barcode { get; set; }
public string email { get; set; }
public string name { get; set; }
public string extra1 { get; set; }
}
}