~ruther/NosSmooth.Local

ref: 5014555e254395f96ff3bcc5937d82101d996dda NosSmooth.Local/src/Extensions/NosSmooth.Extensions.SharedBinding/SharedOptions.cs -rw-r--r-- 1.0 KiB
5014555e — Rutherther fix: 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
//
//  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;

/// <summary>
/// Options for <see cref="SharedManager"/>.
/// </summary>
internal class SharedOptions
{
    /// <summary>
    /// Gets or sets the original descriptor of <see cref="NosBindingManager"/>.
    /// </summary>
    public ServiceDescriptor? BindingDescriptor { get; set; }

    /// <summary>
    /// Gets or sets the original descriptor of <see cref="NostaleDataFilesManager"/>.
    /// </summary>
    public ServiceDescriptor? FileDescriptor { get; set; }

    /// <summary>
    /// Gets or sets the original descriptor of <see cref="IPacketTypesRepository"/>.
    /// </summary>
    public ServiceDescriptor? PacketRepositoryDescriptor { get; set; }
}
Do not follow this link