ReviewR.Web.Services.AuthenticationResult.AuthenticationResult C# (CSharp) Method

AuthenticationResult() public method

public AuthenticationResult ( AuthenticationOutcome outcome, User user, IList missingFields ) : System
outcome AuthenticationOutcome
user ReviewR.Web.Models.Data.User
missingFields IList
return System
        public AuthenticationResult(AuthenticationOutcome outcome, User user, IList<string> missingFields)
        {
            Outcome = outcome;
            User = user;
            MissingFields = missingFields;
        }