Files
WowUp/WowUp.Common/Models/WowInterface/AddonDetailsResponse.cs
jliddev 35eafad77d Simpler caching
Add new CachingService.
Add some caching to Curse addon provider.
2020-08-17 00:16:13 -05:00

26 lines
862 B
C#

using System.Collections.Generic;
namespace WowUp.Common.Models.WowInterface
{
public class AddonDetailsResponse
{
public int Id { get; set; }
public int CategoryId { get; set; }
public string Version { get; set; }
public long LastUpdate{ get; set; }
public string Checksum{ get; set; }
public string FileName { get; set; }
public string DownloadUri { get; set; }
public string PendingUpdate { get; set; }
public string Title { get; set; }
public string Author { get; set; }
public string Description { get; set; }
public string ChangeLog { get; set; }
public long Downloads { get; set; }
public int DownloadsMonthly { get; set; }
public int Favorites { get; set; }
public IEnumerable<Image> Images { get; set; }
}
}