forked from sarbian/ModuleManager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPatchContext.cs
More file actions
23 lines (21 loc) · 727 Bytes
/
Copy pathPatchContext.cs
File metadata and controls
23 lines (21 loc) · 727 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using System;
using System.Collections.Generic;
using ModuleManager.Logging;
using ModuleManager.Progress;
namespace ModuleManager
{
public struct PatchContext
{
public readonly UrlDir.UrlConfig patchUrl;
public readonly IEnumerable<IProtoUrlConfig> databaseConfigs;
public readonly IBasicLogger logger;
public readonly IPatchProgress progress;
public PatchContext(UrlDir.UrlConfig patchUrl, IEnumerable<IProtoUrlConfig> databaseConfigs, IBasicLogger logger, IPatchProgress progress)
{
this.patchUrl = patchUrl;
this.databaseConfigs = databaseConfigs;
this.logger = logger;
this.progress = progress;
}
}
}