mirror of
https://github.com/WowUp/WowUp.git
synced 2026-04-20 13:58:49 -04:00
Add AddonChannelType Add Database migration service Images less jaggedy Fix bug with tukui from Get Addons page Improve context menu UI
17 lines
474 B
C#
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; }
|
|
}
|
|
}
|