FluentBuild.BuildUI.BuildData.BuildData C# (CSharp) Method

BuildData() public method

public BuildData ( string header ) : System
header string
return System
        public BuildData(string header)
        {
            Header = header;
            Info = new ObservableCollection<Message>();
            _state = TaskState.Normal;
            ItemCount = new ObservableCollection<string>();
        }