Files

9 lines
189 B
C#
Raw Permalink Normal View History

2026-03-07 23:33:25 +01:00
namespace Wino.Core.Domain.Entities.Shared;
public interface IContactDisplayItem
{
string DisplayName { get; }
string Address { get; }
AccountContact PreviewContact { get; }
}