mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-05 17:38:01 +08:00
19 lines
339 B
C#
19 lines
339 B
C#
using System;
|
|
|
|
namespace OpenAuth.Repository.Domain
|
|
{
|
|
/// <summary>
|
|
/// 用户ID
|
|
/// </summary>
|
|
public static class UserExt
|
|
{
|
|
public static void CheckPassword(this User user, string password)
|
|
{
|
|
if (user.Password != password)
|
|
{
|
|
throw new Exception("密码错误");
|
|
}
|
|
}
|
|
|
|
}
|
|
} |