internal static CfAutoReply[] FromAutoReplay(AutoReply[] source)
 {
     return source == null ? null : source.Select(FromAutoReplay).ToArray();
 }
 internal static CfAutoReply FromAutoReplay(AutoReply source)
 {
     return source == null ? null : new CfAutoReply(source.Number, source.Keyword, source.Match, source.Message, source.id);
 }