Zxd.Core/code/CommonWorker/Dto/UserModuleApiModel.cs

23 lines
580 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CommonWorker.Dto
{
public class UserModuleApiModel
{
public int ret { get; set; }
public string? message { get; set; }
public Dictionary<string, List<UserModuleModel>> moduelData { get; set; }
}
public class UserModuleModel
{
public string? orderid { get; set; }
public string? productid { get; set; }
public long? start { get; set; }
public long? end { get; set; }
}
}