view SilverlightExampleApp/SilverlightExampleApp.Interfaces/Models/ICountry.cs @ 75:c01dd64f078b

Fixed false positive on the int values
author Steven Hollidge <stevenhollidge@hotmail.com>
date Mon, 23 Apr 2012 21:29:47 +0100
parents 502f5f365649
children
line wrap: on
line source

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