mirror of
https://github.com/WowUp/WowUp.git
synced 2026-04-23 07:17:00 -04:00
12 lines
343 B
C#
12 lines
343 B
C#
namespace WowUp.Common.Models.Curse
|
|
{
|
|
public class CurseGameVersionLatestFile
|
|
{
|
|
public string GameVersion { get; set; }
|
|
public long ProjectFileId { get; set; }
|
|
public string ProjectFileName { get; set; }
|
|
public int FileType { get; set; }
|
|
public string GameVersionFlavor { get; set; }
|
|
}
|
|
}
|