Files
WowUp/WowUp.Common/Models/PotentialAddon.cs
jliddev c13aa6868a v1.13.0
Github support
2020-07-29 10:42:02 -05:00

14 lines
405 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 int DownloadCount { get; set; }
}
}