Files

14 lines
262 B
C#
Raw Permalink Normal View History

2025-11-04 21:09:16 +08:00
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; }
}
}