using JNPF.DependencyInjection;
namespace JNPF.Systems.Entitys.Dto.UserRelation;
///
/// 用户关系列表.
///
[SuppressSniffer]
public class UserRelationListOutput
{
///
/// 名称.
///
public string fullName { get; set; }
///
/// 用户id.
///
public string id { get; set; }
///
/// 头像.
///
public string headIcon { get; set; }
///
/// 组织.
///
public string organize { get; set; }
}