mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-20 23:54:26 +08:00
21 lines
500 B
C#
21 lines
500 B
C#
using System.Collections.Generic;
|
|
|
|
namespace LanMountainDesktop.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; }
|
|
|
|
public string? LaunchExecutable { get; init; }
|
|
|
|
public IReadOnlyList<string> LaunchArguments { get; init; } = [];
|
|
|
|
public string? WorkingDirectory { get; init; }
|
|
}
|