mirror of
https://github.com/MichaelGrafnetter/DSInternals
synced 2024-12-13 18:06:24 +00:00
17 lines
430 B
C#
17 lines
430 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DSInternals.Common.Data
|
|
{
|
|
public interface IDirectorySchema
|
|
{
|
|
// TODO: AttributeCollection class?
|
|
ICollection<ISchemaAttribute> FindAllAttributes();
|
|
ISchemaAttribute FindAttribute(string attributeName);
|
|
ISchemaAttribute FindAttribute(int attributeId);
|
|
}
|
|
}
|