﻿using Newtonsoft.Json;

namespace Unity.Ugc.Model
{
    public class Pagination
    {
        [JsonProperty(PropertyName = "start")]
        public int Start { get; set; }
        
        [JsonProperty(PropertyName = "end")]
        public int End { get; set; }
        
        [JsonProperty(PropertyName = "total")]
        public int Total { get; set; }

        public Pagination()
        {
            Start = 0;
            End = 0;
            Total = 0;
        }
    }
}