Files
WowUp/WowUp.Common/Models/PotentialAddon.cs
jliddev b3b2abf6e5 Folder scan rewrite
Use method similar to curse client for initial detection.
Remove unused projects.
2020-08-25 12:40:56 -05:00

15 lines
449 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; }
public string Version { get; set; }
}
}