mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-19 14:27:45 +01:00
16 lines
563 B
C#
16 lines
563 B
C#
using System.Collections.Generic;
|
|
using System.Diagnostics.CodeAnalysis;
|
|
using System.Runtime.ExceptionServices;
|
|
|
|
using Dalamud.Plugin.Ipc.Exceptions;
|
|
|
|
using Serilog;
|
|
|
|
namespace Dalamud.Plugin.Ipc.Internal;
|
|
|
|
/// <summary>
|
|
/// Stores the internal name and effective working ID of a plugin accessing datashare.
|
|
/// </summary>
|
|
/// <param name="InternalName">The internal name of the plugin.</param>
|
|
/// <param name="EffectiveWorkingId">The effective working ID of the plugin.</param>
|
|
public record DataCachePluginId(string InternalName, Guid EffectiveWorkingId);
|