Files
WowUp/WowUp.Common/Models/PotentialAddon.cs
jliddev e9499f15b0 New TukUI Api
Support higher download number format.
Lower cache time to 10 minutes from 60 minutes.
2020-08-31 13:52:12 -05:00

15 lines
450 B
C#

namespace WowUp.Common.Models
{
public class PotentialAddon
{
public string Name { get; set; }
public string ProviderName { get; set; }
public string ThumbnailUrl { get; set; }
public string ExternalId { get; set; }
public string ExternalUrl { get; set; }
public string Author { get; set; }
public long DownloadCount { get; set; }
public string Version { get; set; }
}
}