-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUpdateSummary.cs
62 lines (48 loc) · 1.52 KB
/
UpdateSummary.cs
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
using Semver;
namespace Heliosphere;
internal class UpdateSummary {
internal DateTime Started { get; } = DateTime.UtcNow;
internal DateTime Finished { get; private set; }
internal List<UpdatedMod> Mods { get; } = [];
internal void Finish() {
this.Finished = DateTime.UtcNow;
}
}
internal class UpdatedMod {
internal Guid Id { get; }
internal string OldName { get; }
internal string NewName { get; }
internal List<UpdatedVariant> Variants { get; } = [];
internal UpdatedMod(Guid id, string oldName, string newName) {
this.Id = id;
this.OldName = oldName;
this.NewName = newName;
}
}
internal class UpdatedVariant {
internal Guid Id { get; }
internal UpdateStatus Status { get; }
internal string OldName { get; }
internal string NewName { get; }
internal List<VariantUpdateInfo> VersionHistory { get; }
internal UpdatedVariant(Guid id, UpdateStatus status, string oldName, string newName, List<VariantUpdateInfo> versionHistory) {
this.Id = id;
this.Status = status;
this.OldName = oldName;
this.NewName = newName;
this.VersionHistory = versionHistory;
}
}
internal class VariantUpdateInfo {
internal SemVersion Version { get; }
internal string? Changelog { get; }
internal VariantUpdateInfo(SemVersion version, string? changelog) {
this.Version = version;
this.Changelog = changelog;
}
}
internal enum UpdateStatus {
Success,
Fail,
RequiresIntervention,
}