ln.manage/IManagedObject.cs

17 lines
370 B
C#
Raw Normal View History

2020-01-07 08:48:45 +01:00
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; }
}
}