namespace Hotline.Share.Dtos.CallCenter
{
public record TelToTelDto(string TelNo);
public record TelToOuterDto(string OuterNo);
public record TelToOuterByLineDto(string LineId, string OuterNo);
public record VisitorToTelDto(string TelNo);
public record VisitorToOuterDto(string OuterNo);
public record OuterToOuterDto(string OuterNo);
public record OuterToTelDto(string TelNo);
public record VisitorToGroupDto(string groupid);
///
/// 三方会议参数列表
///
/// 会议发起方分机号
public record ConferenceDto(string TelNo);
}