ENEI2019-Public/api/Dtos/userDetails.cs

18 lines
300 B
C#
Raw Normal View History

2019-03-12 03:34:40 +00:00
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using api.Models;
namespace api.Dtos
{
public class userDetails
{
public string name{get;set;} //teamid
public string qr{get;set;} //user qr
}
}