9 lines
168 B
C#
9 lines
168 B
C#
using MotoresArgentinosV2.Core.DTOs;
|
|
|
|
namespace MotoresArgentinosV2.Core.Interfaces;
|
|
|
|
public interface IAdSyncService
|
|
{
|
|
Task<bool> SyncAdToLegacyAsync(int adId);
|
|
}
|