mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-20 15:44:25 +08:00
11 lines
337 B
C#
11 lines
337 B
C#
namespace LanMountainDesktop.AirAppSdk;
|
|
|
|
/// <summary>
|
|
/// Marks a class as the entry point for an AirApp.
|
|
/// The marked class must inherit from AirAppBase or implement IAirApp.
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = false)]
|
|
public sealed class AirAppEntranceAttribute : Attribute
|
|
{
|
|
}
|