9 lines
302 B
C#
9 lines
302 B
C#
|
|
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;
|
||
|
|
}
|