You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
421 B
Plaintext
19 lines
421 B
Plaintext
11 months ago
|
using System;
|
||
|
namespace BP.GPM.DTalk.DDSDK
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 访问票据
|
||
|
/// </summary>
|
||
|
public class AccessToken_Ding
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 票据的值
|
||
|
/// </summary>
|
||
|
public static String Value { get; set; }
|
||
|
/// <summary>
|
||
|
/// 票据的开始时间
|
||
|
/// </summary>
|
||
|
public static DateTime Begin { get; set; }
|
||
|
}
|
||
|
}
|