Files
Api/DouyinApi.IServices/IAccessTrendLogServices.cs

14 lines
284 B
C#
Raw Permalink Normal View History

2025-11-04 21:09:16 +08:00
using DouyinApi.IServices.BASE;
using DouyinApi.Model.Models;
namespace DouyinApi.IServices
{
/// <summary>
/// IAccessTrendLogServices
/// </summary>
public interface IAccessTrendLogServices : IBaseServices<AccessTrendLog>
{
}
}