23 lines
483 B
C#
23 lines
483 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 bool Result { get; set; }
|
|
/// <summary>
|
|
/// 票据
|
|
/// </summary>
|
|
public string Ticket { get; set; }
|
|
}
|
|
}
|