// // SharedOptions.cs // // Copyright (c) František Boháček. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. using Microsoft.Extensions.DependencyInjection; using NosSmooth.Data.NOSFiles; using NosSmooth.LocalBinding; using NosSmooth.PacketSerializer.Packets; namespace NosSmooth.Extensions.SharedBinding; /// /// Options for . /// internal class SharedOptions { /// /// Gets or sets the original descriptor of . /// public ServiceDescriptor? BindingDescriptor { get; set; } /// /// Gets or sets the original descriptor of . /// public ServiceDescriptor? FileDescriptor { get; set; } /// /// Gets or sets the original descriptor of . /// public ServiceDescriptor? PacketRepositoryDescriptor { get; set; } }