2020-11-28 07:44:21 +00:00
|
|
|
|
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; } = "";
|
2021-03-08 01:04:55 +00:00
|
|
|
|
public string Description { get; set; } = "";
|
2020-11-28 07:44:21 +00:00
|
|
|
|
}
|
|
|
|
|
}
|