2025-04-24 18:31:27 +08:00

28 lines
605 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Domain.Message.Request.User
{
/// <summary>
/// 最全注册的页面
/// </summary>
public class FirstGetTokenRequest
{
public string JsCode { get; set; }
/// <summary>
/// 小程序进入的参数比如id,小程序码产生传参为scene
/// </summary>
public string Scene { get; set; }
public string EncryptedData { get; set; }
public string Iv { get; set; }
}
}