VSoft/Source/VSoft_Dll/Prams/ShortcutDescription.cs
2020-11-28 15:44:33 +08:00

16 lines
374 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; } = "";
}
}