Files
Api/DouyinApi.Model/ViewModels/RootTKey/SysUserInfoDtoRoot.cs
2025-11-04 21:09:16 +08:00

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; }
}
}