Files
DP44/Common/DTS.CommonCore/.svn/pristine/f2/f2a62fa81a04550e985f858a5bf6e48e8c9c20c1.svn-base

13 lines
288 B
Plaintext
Raw Permalink Normal View History

2026-04-17 14:55:32 -04:00
using DTS.Common.Enums.Channels;
namespace DTS.Common.Interface.Channels
{
public interface IChannelCode
{
int Id { get; }
string Code { get; }
string Name { get; }
ChannelEnumsAndConstants.ChannelCodeType CodeType { get; }
}
}