Files
juipnet/Host/Models/OriginAccountAuthRequest.cs

16 lines
325 B
C#
Raw Normal View History

2020-10-07 20:25:03 +08:00
namespace Home.Models
{
public class OriginAccountAuthRequest
{
public int ProductId { get; set; }
public string Account { get; set; }
public string Pwd { get; set; }
public int StartNum { get; set; } = 0;
public int Count { get; set; } = 0;
}
}