9 lines
235 B
C#
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; }
|
|||
|
}
|
|||
|
}
|