Files
laatzen/TBF_V2/Sources/TBF/MonitoringDB/Interfaces/IOption.cs
T
2021-10-01 11:12:07 +02:00

21 lines
589 B
C#

using System;
using System.Collections.Generic;
namespace MonitoringDB.Interfaces
{
public interface IOption
{
int Id { get; }
int ItemNr { get; set; }
string Name { get; set; }
string OraDBType { get; set; }
string Description { get; set; }
CodeType CodeType { get; set; }
CodeForm CodeForm { get; set; }
CodeLocation CodeLocation { get; set; }
LifetimeManagement LifetimeManagement { get; set; }
bool Enabled { get; set; }
Entities.Part GetPart(Entities.Process owningProcess);
}
}