ReviewR.Web.Services.AuthenticationResult.AuthenticationResult C# (CSharp) 메소드

AuthenticationResult() 공개 메소드

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