Files
WowUp/WowUp.Common/Models/Addons/AddonSearchResultFile.cs
jliddev c13aa6868a v1.13.0
Github support
2020-07-29 10:42:02 -05:00

15 lines
411 B
C#

using System.Collections.Generic;
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; }
}
}