mirror of
https://github.com/WowUp/WowUp.git
synced 2026-04-21 06:17:46 -04:00
17 lines
430 B
C#
17 lines
430 B
C#
using System.Collections.Generic;
|
|
|
|
namespace WowUp.Common.Models
|
|
{
|
|
public class AddonFolder
|
|
{
|
|
public string Name { get; set; }
|
|
public string Path { get; set; }
|
|
public string Status { get; set; }
|
|
public string ThumbnailUrl { get; set; }
|
|
public string LatestVersion { get; set; }
|
|
|
|
public Toc Toc { get; set; }
|
|
public IList<string> TocMetaData { get; set; }
|
|
}
|
|
}
|