VSoft/Source/VSoft_Dll/Prams/ShortcutDescription.cs

17 lines
428 B
C#
Raw Normal View History

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