tbf/TracingDB/Interfaces/IOption.cs
2018-08-28 09:44:39 +02:00

21 lines
586 B
C#

using System;
using System.Collections.Generic;
namespace TracingDB.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);
}
}