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