15 lines
317 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace skyscraper8.Skyscraper.Scraper.Storage
{
public interface ObjectStorageFactory
{
ObjectStorage CreateObjectStorage();
bool IsEquivalent(DataStorageFactory dataStorageFactory);
}
}