AnswerFactory.Project.Project C# (CSharp) Method

Project() public method

public Project ( ) : System.Collections.Generic
return System.Collections.Generic
        public Project()
        {
            this.id = null;
            //this.owner = string.Empty;
            this.name = string.Empty;
            this.accountId = null;
            //this.idahoImages = new List<IdahoImage>();
            this.aois = new List<object>();
            this.recipeConfigs = new List<RecipeConfig>();
            //this.bestIdahoIds = new List<string>();
            this.originalGeometries = new List<object>();
            this.namedBuffers = new List<NamedBuffer>();
        }
Project