22 using System.Collections.Generic;
26 namespace Ntp.Analyzer.Config.Node.Destination
30 internal FileCollection(
string name, IEnumerable<FileStreamDestination> destinations)
33 this.destinations =
new List<FileStreamDestination>(destinations);
34 foreach (var
d in this.destinations)
44 public override IEnumerable<StreamDestination> Destinations => destinations;
FileCollection(string name, IEnumerable< FileStreamDestination > destinations)
readonly IEnumerable< FileStreamDestination > destinations