inital
This commit is contained in:
25
FasdCockpitBase/Models/F4sdAgentScript.cs
Normal file
25
FasdCockpitBase/Models/F4sdAgentScript.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace FasdCockpitBase.Models
|
||||
{
|
||||
public enum enumAgentScriptType { computer = 1, user = 2 }
|
||||
|
||||
public class cF4sdAgentScript
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string Name { get; set; }
|
||||
public enumAgentScriptType Type { get; set; }
|
||||
public bool UserPermissionRequired { get; set; }
|
||||
}
|
||||
|
||||
public class cF4sdAgentScriptInformation
|
||||
{
|
||||
public int ScriptId { get; set; }
|
||||
public int RevisionId { get; set; }
|
||||
public int TaskId { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user