mirror of
https://github.com/WowUp/WowUp.git
synced 2026-04-24 07:47:29 -04:00
10 lines
271 B
C#
10 lines
271 B
C#
namespace WowUp.Common.Models.WowUpApi.Response
|
|
{
|
|
public class LatestVersionResponse : LatestVersion
|
|
{
|
|
public LatestVersion Beta { get; set; }
|
|
public LatestVersion Stable { get; set; }
|
|
public LatestVersion Updater { get; set; }
|
|
}
|
|
}
|