Files
client/Models/FilePreparationResult.cs

9 lines
302 B
C#
Raw Permalink Normal View History

2026-05-23 18:16:50 +08:00
namespace CloudPrint.Client.Models;
public sealed class FilePreparationResult
{
public string SourcePath { get; init; } = string.Empty;
public string PreparedPath { get; init; } = string.Empty;
public bool Converted { get; init; }
public string Message { get; init; } = string.Empty;
}