ENEI2019-Public/api/Dtos/updateUsersDTO.cs

10 lines
236 B
C#
Raw Permalink Normal View History

2019-03-17 16:12:39 +00:00
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; }
}
}