mirror of
https://github.com/WowUp/WowUp.git
synced 2026-04-23 15:27:03 -04:00
14 lines
340 B
C#
14 lines
340 B
C#
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; }
|
|
}
|
|
}
|