Files
qrcodeService/QRCodeService/Models/GenInputModel.cs
2021-02-23 09:51:50 +08:00

17 lines
365 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace QRCodeService.Models
{
public class GenInputModel
{
public int AppId { get; set; }
public string Time { get; set; }
public string SuffixUrl { get; set; }
public string Sign { get; set; }
}
}