vgquotes/Src/VideoGameQuotes.Web/Models/QuoteCollectionModel.cs

9 lines
235 B
C#
Raw Normal View History

2011-02-15 00:18:29 +00:00
using System.Collections.Generic;
using VideoGameQuotes.Api;
namespace VideoGameQuotes.Web.Models {
public class QuoteCollectionModel {
public IEnumerable<Quote> Quotes { get; set; }
public User User { get; set; }
}
}