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