ln.manage/IManagedObject.cs

17 lines
370 B
C#

using System;
using System.Collections.Generic;
namespace ln.manage
{
public interface IManagedObject
{
IManagedContainer Container { get; }
object Identity { get; }
object GetValue(string propertyName);
void SetValue(string propertyName, object value);
bool Enabled { get; set; }
bool Valid { get; }
}
}