12 lines
251 B
C#
12 lines
251 B
C#
using DTS.Common.Base;
|
|
|
|
namespace DTS.Common.Interface
|
|
{
|
|
public interface ISummaryChannel : IBaseClass
|
|
{
|
|
string ChannelType { get; set; }
|
|
int Assigned { get; set; }
|
|
string Unassigned { get; set; }
|
|
}
|
|
}
|