mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
16 lines
383 B
C#
16 lines
383 B
C#
using System;
|
|
using Wabbajack.DTOs.JsonConverters;
|
|
using Wabbajack.Paths;
|
|
|
|
namespace Wabbajack.DTOs.BrowserMessages;
|
|
|
|
/// <summary>
|
|
/// Show a manual download page for the given Url
|
|
/// </summary>
|
|
[JsonName("ManualDownload")]
|
|
public class ManualDownload : IMessage
|
|
{
|
|
public string Prompt { get; set; }
|
|
public Uri Url { get; set; }
|
|
public AbsolutePath Path { get; set; }
|
|
} |