Statistics
| Branch: | Revision:

root / trunk / Pithos.ShellExtensions / LogCategories.cs @ 4d301e8e

History | View | Annotate | Download (678 Bytes)

1
// -----------------------------------------------------------------------
2
// <copyright file="LogCategories.cs" company="Microsoft">
3
// TODO: Update copyright text.
4
// </copyright>
5
// -----------------------------------------------------------------------
6

    
7
namespace Pithos.ShellExtensions
8
{
9
    using System;
10
    using System.Collections.Generic;
11
    using System.Linq;
12
    using System.Text;
13

    
14
    /// <summary>
15
    /// TODO: Update summary.
16
    /// </summary>
17
    public class LogCategories
18
    {
19
        public const string Shell = "[SHELL]";
20
        public const string ShellMenu = "[SHELL MENU]";
21
        public const string ShellOverlays = "[SHELL OVERLAYS]";
22
    }
23
}