Gtd.Client.Models.ImmutableProjectInfo.ImmutableProjectInfo C# (CSharp) Method

ImmutableProjectInfo() public method

public ImmutableProjectInfo ( ProjectId projectId, string outcome, ProjectType type, string uiKey ) : System
projectId ProjectId
outcome string
type ProjectType
uiKey string
return System
        public ImmutableProjectInfo(ProjectId projectId, string outcome, ProjectType type, string uiKey)
        {
            ProjectId = projectId;
            Outcome = outcome;
            Type = type;
            UIKey = uiKey;
        }
ImmutableProjectInfo