ENEI2019-Public/api/Dtos/getProfileImage.cs

11 lines
176 B
C#
Raw Normal View History

2019-03-24 18:57:09 +00:00
using System.ComponentModel.DataAnnotations;
namespace api.Dtos
{
public class getProfileImage
{
[Required]
public string QRcode{get;set;}
}
}