9 lines
304 B
C#
9 lines
304 B
C#
namespace ModpackUpdater.Apps.Manager.Api.Model;
|
|
|
|
public class WorkspaceConfig
|
|
{
|
|
public string ProviderId { get; internal set; } = "origin.unknown";
|
|
public string FileLocationInstallJson { get; set; } = "install.json";
|
|
public string FileLocationUpdateJson { get; set; } = "update.json";
|
|
}
|