26 lines
566 B
C#
26 lines
566 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Step.Model.DatabaseModels
|
|
{
|
|
|
|
[Table("external_program")]
|
|
public class ExternalProgramModel
|
|
{
|
|
[Key]
|
|
[Column("id")]
|
|
public int Id { get; set; }
|
|
|
|
[Column("path")]
|
|
public string Path { get; set; }
|
|
|
|
[Column("in_main_menu_bar")]
|
|
public bool InMainMenuBar { get; set; }
|
|
}
|
|
}
|