using System.Collections.Concurrent; namespace Bit.Core.Services; public class PhishingDomainService : IPhishingDomainService { private readonly ConcurrentDictionary _phishingDomains = new(); public Task> GetPhishingDomainsAsync() { return Task.FromResult(_phishingDomains.Keys.AsEnumerable()); } }