| 12345678910111213141516171819202122232425262728 |
- using System.Collections.Generic;
- using Microsoft.AspNet.Identity;
- namespace IwbZero.IdentityFramework
- {
- public class AbpIdentityResult : IdentityResult
- {
- public AbpIdentityResult()
- {
- }
- public AbpIdentityResult(IEnumerable<string> errors)
- : base(errors)
- {
- }
- public AbpIdentityResult(params string[] errors)
- : base(errors)
- {
- }
- public new static AbpIdentityResult Failed(params string[] errors)
- {
- return new AbpIdentityResult(errors);
- }
- }
- }
|