-
Notifications
You must be signed in to change notification settings - Fork 113
/
EgressOptions.cs
23 lines (20 loc) · 967 Bytes
/
EgressOptions.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using Microsoft.Diagnostics.Monitoring.WebApi;
using Microsoft.Diagnostics.Tools.Monitor.Egress.FileSystem;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
namespace Microsoft.Diagnostics.Tools.Monitor
{
internal sealed class EgressOptions
{
[Display(
ResourceType = typeof(OptionsDisplayStrings),
Description = nameof(OptionsDisplayStrings.DisplayAttributeDescription_EgressOptions_FileSystem))]
public IDictionary<string, FileSystemEgressProviderOptions> FileSystem { get; set; }
[Display(
ResourceType = typeof(OptionsDisplayStrings),
Description = nameof(OptionsDisplayStrings.DisplayAttributeDescription_EgressOptions_Properties))]
public IDictionary<string, string> Properties { get; set; }
}
}