namespace NetworkTool.Client.Models; public sealed class RemoteValidateResult { public bool Valid { get; init; } public IReadOnlyList<string> Warnings { get; init; } = []; public IReadOnlyList<string> Errors { get; init; } = []; }