view Implab/Diagnostics/TraceSourceAttribute.cs @ 266:254d1f255d87 v3

Добавлена метка v3.0.10 для набора изменений 74e048cbaac8
author cin
date Mon, 16 Apr 2018 19:45:18 +0300
parents a01d9df88d74
children
line wrap: on
line source

using System;

namespace Implab.Diagnostics {
    /// <summary>
    /// Used to mark class which uses <see cref="Trace{T}"/> class to trace it's events
    /// </summary>
    [AttributeUsage(AttributeTargets.Class)]
    public class TraceSourceAttribute : Attribute {
    }
}