19 lines
430 B
C#
19 lines
430 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WGShare.Domain.DTOs.MiniProgram
|
|
{
|
|
public class wxacodeunlimitBody
|
|
{
|
|
public string scene { get; set; }
|
|
public string page { get; set; }
|
|
public bool check_path { get; set; }
|
|
public string env_version { get; set; }
|
|
public int width { get; set; }
|
|
|
|
}
|
|
}
|