123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace VeloeMinecraftLauncher.Entity.VersionManifest
- {
- public class Version
- {
- public string id { get; set; }
- public string type { get; set; }
- public string url { get; set; }
- public DateTime time { get; set; }
- public DateTime releaseTime { get; set; }
- public string sha1 { get; set; }
- public int complianceLevel { get; set; }
- public override string ToString()
- {
- return id;
- }
- }
- }
|