123456789101112131415161718192021222324252627282930313233343536 |
- #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
- {
- /// <summary>
- /// In detail of the name of an identifiable entity.
- /// </summary>
- public enum EntityLogKind
- {
- #region Fields
- /// <summary>
- /// No name.
- /// </summary>
- None,
- /// <summary>
- /// Only the identifiable entity itself (no parents).
- /// </summary>
- Entity,
- /// <summary>
- /// The names of identifiable entitis all the way from the root entity to the current entity.
- /// </summary>
- Ancestors
- #endregion
- }
- }
|