vgquotes/Src/VideoGameQuotes.Web/Models/QuoteCollectionModel.cs
2011-02-15 00:18:29 +00:00

9 lines
235 B
C#

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; }
}
}