using JNPF.DependencyInjection; namespace JNPF.Systems.Entitys.Dto.UserRelation; /// /// 用户关系创建输入. /// [SuppressSniffer] public class UserRelationCrInput { /// /// 关系类型. /// public string objectType { get; set; } /// /// 用户数组. /// public List userIds { get; set; } }