Files
WowUp/WowUp.Common/Models/Addons/AddonSearchResult.cs
jliddev 24b59dbcc2 v1.11.0
Add AddonChannelType
Add Database migration service
Images less jaggedy
Fix bug with tukui from Get Addons page
Improve context menu UI
2020-07-20 15:18:57 -05:00

17 lines
474 B
C#

using System.Collections.Generic;
namespace WowUp.Common.Models.Addons
{
public class AddonSearchResult
{
public string Name { get; set; }
public string Author { get; set; }
public string ThumbnailUrl { get; set; }
public string ExternalId { get; set; }
public string ExternalUrl { get; set; }
public string ProviderName { get; set; }
public IEnumerable<AddonSearchResultFile> Files { get; set; }
}
}