22 lines
440 B
C#
22 lines
440 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Collections.ObjectModel;
|
|
|
|
namespace Aiwaz.Contracts
|
|
{
|
|
public interface ICreationParams
|
|
{
|
|
}
|
|
|
|
public interface IResource
|
|
{
|
|
ICreationParams CreationParams { get; }
|
|
string WellKnownName { get; set; }
|
|
|
|
IResource Parent { get; set; }
|
|
ObservableCollection<IResource> Children { get; }
|
|
}
|
|
}
|