tbf/MonitoringDB/Interfaces/IOption.cs

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