Files
douyin/model/dto/DouyinFollowGroupDto.cs

24 lines
456 B
C#

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