Files
2020-09-12 16:11:43 +02:00

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; }
}
}