Files

10 lines
174 B
C#
Raw Permalink Normal View History

2025-10-25 10:54:38 +02:00
using System;
using System.Collections.Generic;
namespace Wino.Core.Domain.Interfaces;
public interface IMailHashContainer
{
IEnumerable<Guid> GetContainingIds();
}