view SilverlightExampleApp/SilverlightExampleApp.Interfaces/Models/ITitle.cs @ 104:4cfdecdb1d12

Silverlight Glimpse now lives on codeplex, StockDisplay lives on Google code
author stevenhollidge <stevenhollidge@hotmail.com>
date Sun, 06 May 2012 12:16:38 +0100
parents 502f5f365649
children
line wrap: on
line source

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