mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-20 23:54:26 +08:00
10 lines
240 B
C#
10 lines
240 B
C#
|
|
using dotnetCampus.Ipc.CompilerServices.Attributes;
|
||
|
|
|
||
|
|
namespace LanMountainDesktop.Shared.IPC.Abstractions.Services;
|
||
|
|
|
||
|
|
[IpcPublic(IgnoresIpcException = true)]
|
||
|
|
public interface IPublicAppInfoService
|
||
|
|
{
|
||
|
|
PublicAppInfoSnapshot GetAppInfo();
|
||
|
|
}
|