mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-12-29 09:54:44 +08:00
19 lines
576 B
C#
19 lines
576 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace SKIT.FlurlHttpClient.Wechat.Work.Models
|
|
{
|
|
/// <summary>
|
|
/// <para>表示 [GET] /cgi-bin/school/get_teacher_view_mode 接口的响应。</para>
|
|
/// </summary>
|
|
public class CgibinSchoolGetTeacherViewModeResponse : WechatWorkResponse
|
|
{
|
|
/// <summary>
|
|
/// 获取或设置查看模式。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("view_mode")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("view_mode")]
|
|
public int ViewMode { get; set; }
|
|
}
|
|
}
|