mirror of
https://github.com/WowUp/WowUp.git
synced 2026-04-21 06:17:46 -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
444 B
C#
17 lines
444 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using WowUp.Common.Enums;
|
|
|
|
namespace WowUp.Common.Models.Addons
|
|
{
|
|
public class AddonSearchResultFile
|
|
{
|
|
public AddonChannelType ChannelType { get; set; }
|
|
public string Version { get; set; }
|
|
public IEnumerable<string> Folders { get; set; }
|
|
public string GameVersion { get; set; }
|
|
public string DownloadUrl { get; set; }
|
|
}
|
|
}
|