EntityLogKindEnum.cs 783 B

123456789101112131415161718192021222324252627282930313233343536
  1. #region --------------- Copyright Dresser Wayne Pignone -------------
  2. /*
  3. * $Log: /Wrk/WayneLibraries/Wrk/Log/EntityLogKindEnum.cs $
  4. *
  5. * 1 08-02-13 9:40 Mattias.larsson
  6. * Created.
  7. */
  8. #endregion
  9. namespace Wayne.Lib.Log
  10. {
  11. /// <summary>
  12. /// In detail of the name of an identifiable entity.
  13. /// </summary>
  14. public enum EntityLogKind
  15. {
  16. #region Fields
  17. /// <summary>
  18. /// No name.
  19. /// </summary>
  20. None,
  21. /// <summary>
  22. /// Only the identifiable entity itself (no parents).
  23. /// </summary>
  24. Entity,
  25. /// <summary>
  26. /// The names of identifiable entitis all the way from the root entity to the current entity.
  27. /// </summary>
  28. Ancestors
  29. #endregion
  30. }
  31. }