Files
qrcodeService/QRCodeService/Application/Queries/AppViewModel.cs
2021-02-25 10:39:30 +08:00

16 lines
324 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace QRCodeService.Application.Queries
{
public class App
{
public int Id { get; set; }
public string Appkey { get; set; }
public string Remarks { get; set; }
}
}