23 lines
		
	
	
		
			686 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			686 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System;
 | 
						|
using System.Collections.Generic;
 | 
						|
using System.ComponentModel;
 | 
						|
using System.Linq;
 | 
						|
using System.Runtime.CompilerServices;
 | 
						|
using System.Text;
 | 
						|
using System.Threading.Tasks;
 | 
						|
 | 
						|
namespace Deedy.Design
 | 
						|
{
 | 
						|
    public interface IDeedyElement : INotifyPropertyChanged
 | 
						|
    {
 | 
						|
        public string DEClass { get; }
 | 
						|
        public string DETitle { get; set; }
 | 
						|
        public string DERemark { get; set; }
 | 
						|
        public string DEIdentify { get; set; }
 | 
						|
        public IDeedyElement? DeedyParent { get; }
 | 
						|
        public IDeedyElement DeedyRoot { get; }
 | 
						|
        public void InsertInFront(IDeedyElement deedyElement);
 | 
						|
        public void InsertAtRear(IDeedyElement deedyElement);
 | 
						|
    }
 | 
						|
}
 |