comparison SilverlightExampleApp/SilverlightExampleApp.Web/Models/Country.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 using SilverlightExampleApp.Interfaces.Models;
2
3 namespace SilverlightExampleApp.Web.Models
4 {
5 public class Country : ICountry
6 {
7 public int Id { get; set; }
8 public string Description { get; set; }
9 }
10 }