Files
activestep/Step.Model/DTOModels/DTOExternalSoftwareModel.cs
2020-09-12 16:11:43 +02:00

28 lines
568 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Step.Model.DTOModels
{
public class DTOExternalSoftwareModel
{
public string Id { get; set; }
public string Path { get; set; }
public string LongName { get; set; }
public string ShortName { get; set; }
public string Arguments { get; set; }
public string IconBase64 { get; set; }
public bool InMainMenuBar { get; set; }
public bool IsCms { get; set; }
}
}