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

17 lines
430 B
C#

using System.Collections.Generic;
namespace WowUp.Common.Models
{
public class AddonFolder
{
public string Name { get; set; }
public string Path { get; set; }
public string Status { get; set; }
public string ThumbnailUrl { get; set; }
public string LatestVersion { get; set; }
public Toc Toc { get; set; }
public IList<string> TocMetaData { get; set; }
}
}