-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathUnityVersionStream.cs
More file actions
46 lines (41 loc) · 1.1 KB
/
UnityVersionStream.cs
File metadata and controls
46 lines (41 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
using System;
using System.Collections.Generic;
namespace UnityLauncherPro
{
public enum UnityVersionStream
{
Alpha,
Beta,
LTS,
Tech
}
public class UnityVersionJSON
{
public string Version { get; set; }
public DateTime ReleaseDate { get; set; }
public UnityVersionStream Stream { get; set; }
public List<Download> Downloads { get; set; }
public string ShortRevision { get; set; }
}
public class Download
{
public string Url { get; set; }
public string Type { get; set; }
public string Platform { get; set; }
public string Architecture { get; set; }
public DownloadSize DownloadSize { get; set; }
public List<Module> Modules { get; set; }
}
public class DownloadSize
{
public long Value { get; set; }
public string Unit { get; set; }
}
public class Module
{
public string Id { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public string Url { get; set; }
}
}