ChengDa_English/SGGL/Model/FaceRecordForm.cs

17 lines
429 B
C#
Raw Normal View History

2022-03-15 17:36:38 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace WebAPI.Models
{
public class FaceRecordForm
{
public string AttachUrl1 { set; get; }
public string inOrOut { set; get; }
public string projectId { set; get; }
public string location{ set; get; }
public string userId { set; get; }
public string userName { set; get; }
}
}