Files
DP44/Common/DTS.Common/Interface/Channels/IChannelCode.cs

13 lines
288 B
C#
Raw 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; }
}
}