ENEI2019-Public/api/Dtos/loginQR.cs

13 lines
223 B
C#
Raw Normal View History

2019-03-19 15:57:13 +00:00
using System.ComponentModel.DataAnnotations;
namespace api.Dtos
{
public class loginQr
{
[Required]
public string QRcode{get;set;}
[Required]
public string token{get;set;}
}
}