using System;
using System.Collections.Generic;
using System.Text;
namespace GxPress.Request.App.OftenContact
{
///
/// 新增
///
public class OftenContactInRequest
{
///
/// 好友ID
///
public string ContactUserId { get; set; }
///
/// 工作组ID
///
public int IndividualGroupId { get; set; }
///
/// 1 单聊 2群聊
///
public int ChatType { get; set; }
}
}