You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
434 B
17 lines
434 B
namespace OpenDBDiff.Abstractions.Schema.Model
|
|
{
|
|
public interface ISchemaList<T, P>
|
|
where T : ISchemaBase
|
|
where P : ISchemaBase
|
|
{
|
|
void Add(T item);
|
|
SchemaList<T, P> Clone(P parentObject);
|
|
bool Contains(string name);
|
|
T Find(int id);
|
|
T this[string name] { get; set; }
|
|
T this[int index] { get; set; }
|
|
P Parent { get; }
|
|
int Count { get; }
|
|
}
|
|
}
|