Files
LanMountainDesktop/LanMontainDesktop/Models/StartMenuAppEntry.cs

13 lines
289 B
C#
Raw Normal View History

2026-03-01 00:34:07 +08:00
namespace LanMontainDesktop.Models;
public sealed class StartMenuAppEntry
{
public required string DisplayName { get; init; }
public required string FilePath { get; init; }
public required string RelativePath { get; init; }
public byte[]? IconPngBytes { get; init; }
}