13 lines
285 B
Plaintext
13 lines
285 B
Plaintext
|
|
using DTS.Common.Base;
|
||
|
|
|
||
|
|
namespace DTS.Common.Interface
|
||
|
|
{
|
||
|
|
public interface IChannelSummary : IBaseClass
|
||
|
|
{
|
||
|
|
string ChannelType { get; set; }
|
||
|
|
int Requested { get; set; }
|
||
|
|
int Assigned { get; set; }
|
||
|
|
int Unassigned { get; set; }
|
||
|
|
}
|
||
|
|
}
|