mirror of
https://github.com/WowUp/WowUp.git
synced 2026-04-23 15:27:03 -04:00
21 lines
686 B
C#
21 lines
686 B
C#
namespace WowUp.Common.Models
|
|
{
|
|
public class Toc
|
|
{
|
|
public string Interface { get; set; }
|
|
public string Title { get; set; }
|
|
public string Author { get; set; }
|
|
public string Website { get; set; }
|
|
public string Version { get; set; }
|
|
public string PartOf { get; set; }
|
|
public string Category { get; set; }
|
|
public string Localizations { get; set; }
|
|
public string Dependencies { get; set; }
|
|
|
|
public string CurseProjectId { get; set; }
|
|
public string WowInterfaceId { get; set; }
|
|
public string TukUiProjectId { get; set; }
|
|
public string TukUiProjectFolders { get; set; }
|
|
}
|
|
}
|