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

19 lines
579 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; }
}
}