19 lines
368 B
C#
19 lines
368 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace FAuth.Models
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 用户密码验证结果
|
|||
|
/// </summary>
|
|||
|
public class CheckUserResult
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 票据
|
|||
|
/// </summary>
|
|||
|
public string Ticket { get; set; }
|
|||
|
}
|
|||
|
}
|