comparison SilverlightExampleApp/SilverlightExampleApp.Interfaces/Models/ITitle.cs @ 49:502f5f365649

Initial load for Silverlight Example Application
author Steven Hollidge <stevenhollidge@hotmail.com>
date Tue, 17 Apr 2012 17:57:52 +0100
parents
children
comparison
equal deleted inserted replaced
48:d617b54e1f47 49:502f5f365649
1 namespace SilverlightExampleApp.Interfaces.Models
2 {
3 public interface ITitle
4 {
5 int Id { get; set; }
6 string Description { get; set; }
7 }
8 }