mirror of
https://github.com/WowUp/WowUp.git
synced 2026-04-20 13:58:49 -04:00
15 lines
450 B
C#
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; }
|
|
}
|
|
}
|