comparison SilverlightAsyncRestWcf/SilverlightAsyncRestWcf.Common/Car.cs @ 117:9eadccc3b46c

REST working, next step unit tests
author stevenh7776
date Sun, 27 May 2012 15:06:35 +0100
parents
children fa4ba8943048
comparison
equal deleted inserted replaced
116:d3380f499575 117:9eadccc3b46c
1 namespace SilverlightAsyncRestWcf.Common
2 {
3 public class Car
4 {
5 public int Id { get; set; }
6 public string Make { get; set; }
7 public string Model { get; set; }
8 public int Year { get; set; }
9 }
10 }