view SilverlightExampleApp/SilverlightExampleApp.Interfaces/Models/ITitle.cs @ 87:8bb84cc9ba3f

Clear out rubbish
author stevenhollidge <stevenhollidge@hotmail.com>
date Thu, 26 Apr 2012 13:23:35 +0100
parents 502f5f365649
children
line wrap: on
line source

namespace SilverlightExampleApp.Interfaces.Models
{
    public interface ITitle
    {
        int Id { get; set; }
        string Description { get; set; }
    }
}