Files
duplicati/Duplicati/WebserverCore/Dto/WebModuleOutputDto.cs
T

9 lines
272 B
C#
Raw Normal View History

2024-06-07 15:56:43 +02:00
namespace Duplicati.WebserverCore.Dto;
/// <summary>
/// The web module output DTO
/// </summary>
/// <param name="Status">The status</param>
/// <param name="Result">The result</param>
public record WebModuleOutputDto(string Status, IDictionary<string, string> Result);