14 lines
262 B
C#
14 lines
262 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
|
|||
|
|
namespace DouyinApi.Model.ViewModels
|
|||
|
|
{
|
|||
|
|
public class SysUserInfoDtoRoot<Tkey> where Tkey : IEquatable<Tkey>
|
|||
|
|
{
|
|||
|
|
public Tkey uID { get; set; }
|
|||
|
|
|
|||
|
|
public List<Tkey> RIDs { get; set; }
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|