RemoteValidateResult.cs 244 B

12345678
  1. namespace NetworkTool.Client.Models;
  2. public sealed class RemoteValidateResult
  3. {
  4. public bool Valid { get; init; }
  5. public IReadOnlyList<string> Warnings { get; init; } = [];
  6. public IReadOnlyList<string> Errors { get; init; } = [];
  7. }