mirror of
https://github.com/WowUp/WowUp.git
synced 2026-04-23 15:27:03 -04:00
13 lines
327 B
C#
13 lines
327 B
C#
using System;
|
|
|
|
namespace WowUp.Common.Models.Curse
|
|
{
|
|
public class CurseSortableGameVersion
|
|
{
|
|
public string GameVersionPadded { get; set; }
|
|
public string GameVersion { get; set; }
|
|
public DateTime GameVersionReleaseDate { get; set; }
|
|
public string GameVersionName { get; set; }
|
|
}
|
|
}
|