12 lines
197 B
C#
12 lines
197 B
C#
using System;
|
|
|
|
namespace CPF.ReoGrid.Outline
|
|
{
|
|
public class OutlineRemovedEventArgs : OutlineEventArgs
|
|
{
|
|
public OutlineRemovedEventArgs(IReoGridOutline outline) : base(outline)
|
|
{
|
|
}
|
|
}
|
|
}
|