Files
douyin/model/dto/DouyinFollowGroupDto.cs
T
2026-01-19 09:57:40 +08:00

16 lines
273 B
C#

namespace dy.net.model.dto
{
public class DouyinFollowGroupDto
{
/// <summary>
/// MyUserId
/// </summary>
public string Key { get; set; }
public int Total { get; set; }
public string Name { get; set; }
}
}