------ #### VSoft V1.0.2103.0701 - *.[新增]当拖放的文件是快捷方式时,支持获取备注信息。 - *.[修复]修复内置命令编辑状态时,拖放会导致文件添加到主界面的BUG。 - *.[修复]修复内置命令拖放文件时,在添加界面会保持拖放状态的BUG。
17 lines
428 B
C#
17 lines
428 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace VSoft.Prams
|
|
{
|
|
public class ShortcutDescription
|
|
{
|
|
public string TargetPath { get; set; } = "";
|
|
public string Arguments { get; set; } = "";
|
|
public string WorkDir { get; set; } = "";
|
|
public string IconLocation { get; set; } = "";
|
|
public string Description { get; set; } = "";
|
|
}
|
|
}
|