VSoft/Source/VSoft_Dll/Prams/ShortcutDescription.cs

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