using Core.Common.Base.Properties;
using Core.Common.Utils.Collections.Generic;
namespace Core.Common.Base.Data
{
///
/// Class that holds all items in a project.
///
public class Project : Observable
{
///
/// Constructs a new .
///
public Project() : this(Resources.Project_Constructor_Default_name) {}
///
/// Constructs a new .
///
/// The name of the .
public Project(string name)
{
Name = name;
Description = "";
Items = new EventedList