root/trunk/src/UserInterface/Entity.cs

User picture

Author: ricardoborges

Revision: 36 («Previous)


File Size: 461 Bytes

(February 03, 2010 00:24 UTC) Over 2 years ago

refactoring the project directories to tags/branches/trunk standard

 
Show/hide line numbers
using System.Collections.Generic;

namespace Ayende.NHibernateQueryAnalyzer.UserInterface
{
    public class Entity
    {
        public Entity()
        {
            Properties = new SortedList<string, string>();
        }
        public Entity(string name)
            : this()
        {
            Name = name;
        }

        public string Name { get; set; }
        public SortedList<string, string> Properties { get; set; }
    }
}