Files
juipnet/Host/Models/OriginAccountAuthRequest.cs

16 lines
310 B
C#
Raw Normal View History

2023-07-29 10:19:42 +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;
}
}