using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ARW.Model.Chat
{
///
/// 查找好友
///
public class FindFriendsDto
{
public string FriendName { get; set; }
}
///
/// 修改备注
///
public class UpdateNoteDto
{
public long UserGuId { get; set; }
public string Note { get; set; }
}
}