13 lines
178 B
C#
13 lines
178 B
C#
|
using System;
|
|||
|
|
|||
|
namespace ANXStatusComparer.Data
|
|||
|
{
|
|||
|
public class InterfaceData : BaseObject
|
|||
|
{
|
|||
|
public InterfaceData(Type setType)
|
|||
|
: base(setType)
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
}
|