Files
DP44/Common/DTS.Common.Serialization/Control/Event/Module/ReviewableDasSerialNumberAttribute.cs

47 lines
1.4 KiB
C#
Raw Normal View History

2026-04-17 14:55:32 -04:00
/*
* DTS.Slice.Control.Event.Module.ReviewableDasSerialNumberAttribute.cs
*
* Copyright © 2009
* Diversified Technical Systems, Inc.
* All Rights Reserved
*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using DTS.Utilities;
namespace DTS.Slice.Control
{
// *** see DTS.Slice.Control.Event.cs ***
public partial class Event
{
// *** see DTS.Slice.Control.Event.Module.cs ***
public partial class Module
{
/// <summary>
/// A reviewable filter frequency attribute attached to a specific channel.
/// </summary>
public class ReviewableDasSerialNumberAttribute
: Slice.Control.Event.Module.ReviewableAttribute
{
/// <summary>
/// Initialize an instance of this class.
/// </summary>
///
/// <param name="channel">
/// The <see cref="Event.Module"/> to which this attribute is attached.
/// </param>
///
public ReviewableDasSerialNumberAttribute(Event.Module module)
: base("DAS Serial Number", delegate { return module.DasSerialNumber; })
{
}
}
} // *** end Module ***
} // *** end Event ***
}