ENEI2019-Public/api/Dtos/ScanReturn.cs

16 lines
365 B
C#
Raw Normal View History

2019-03-14 18:10:59 +00:00
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using api.Models;
namespace api.Dtos
{
public class ScanReturn
{
public int tipo{get;set;} //tipo de retorno, 0 = cromo // 1 = user
public UserForListDto user{get;set;} //user
public string resp{get;set;} //reposta
}
}