/// <summary>
 ///     Initializes a new instance of the <see cref="GetContentHashListResult"/> class.
 /// </summary>
 public GetContentHashListResult(ResultBase other, ContentHashListSource source)
     : base(other, message: null)
 {
     Source = source;
 }
 /// <summary>
 ///     Initializes a new instance of the <see cref="GetContentHashListResult"/> class.
 /// </summary>
 public GetContentHashListResult(ContentHashListWithDeterminism contentHashListWithDeterminism, ContentHashListSource source = ContentHashListSource.Unknown)
 {
     Source = source;
     ContentHashListWithDeterminism = contentHashListWithDeterminism;
 }