Mercurial > silverbladetech
view 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 |
line wrap: on
line source
using SilverlightExampleApp.Interfaces.Models; namespace SilverlightExampleApp.Web.Models { public class Country : ICountry { public int Id { get; set; } public string Description { get; set; } } }