port from perforce
This commit is contained in:
21
aiwaz/Backup/Aiwaz.Contracts/IResource.cs
Normal file
21
aiwaz/Backup/Aiwaz.Contracts/IResource.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user