#region --------------- Copyright Dresser Wayne Pignone -------------
/*
* $Log: /Wrk/WayneLibraries/Wrk/Log/EntityLogKindEnum.cs $
*
* 1 08-02-13 9:40 Mattias.larsson
* Created.
*/
#endregion
namespace Wayne.Lib.Log
{
///
/// In detail of the name of an identifiable entity.
///
public enum EntityLogKind
{
#region Fields
///
/// No name.
///
None,
///
/// Only the identifiable entity itself (no parents).
///
Entity,
///
/// The names of identifiable entitis all the way from the root entity to the current entity.
///
Ancestors
#endregion
}
}