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

15 lines
271 B
C#

using dy.net.model.entity;
namespace dy.net.model.dto
{
public class AppConfigImportDto
{
public List<DouyinFollowed> follows { get; set; }
public AppConfig conf { get; set; }
public List<DouyinCookie> cookies { get; set; }
}
}