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; } } }