Skip to content

Instantly share code, notes, and snippets.

@SaraJo
Created October 28, 2009 06:58
Show Gist options
  • Save SaraJo/220307 to your computer and use it in GitHub Desktop.
Save SaraJo/220307 to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using Transportation.Models;
namespace Transportation.ViewModels
{
public class TransportationViewModel
{
public List<Car> Cars {get; set;}
public Train Train {get; set;}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment