feyris-tan ef86554f9a Import
2025-05-12 22:09:16 +02:00

25 lines
555 B
C#

using skyscraper5.Dvb.DataBroadcasting.IntModel;
using skyscraper5.Skyscraper.Scraper.Storage.Split;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace skyscraper5.Data.MySql
{
public partial class MySqlDataStorage : DataStorage
{
public bool TestForIpMacNotification(IpMacNotification notification)
{
throw new NotImplementedException();
}
public void StoreIpMacNotification(IpMacNotification notification)
{
throw new NotImplementedException();
}
}
}