﻿using System.Collections.Generic;
using Newtonsoft.Json;

namespace Unity.Ugc.Model
{
    public class PublishedModList
    {
        [JsonProperty(PropertyName = "pagination")]
        public Pagination Pagination { get; set; }
        
        [JsonProperty(PropertyName = "items")]
        public List<PublishedMod> Items { get; set; }
        
        public PublishedModList()
        {
            Pagination = new Pagination();
            Items = new List<PublishedMod>();
        }
    }
}