Files
Wino-Mail/Wino.Core.Domain/Entities/Shared/ContactGroupMember.cs
T
Burak Kaan Köse e816e87f61 Contacts management.
2026-03-01 21:07:10 +01:00

22 lines
530 B
C#

using System;
using SQLite;
namespace Wino.Core.Domain.Entities.Shared;
/// <summary>
/// Associates an e-mail address with a <see cref="ContactGroup"/>.
/// </summary>
public class ContactGroupMember
{
[PrimaryKey, AutoIncrement]
public int Id { get; set; }
/// <summary>Group this member belongs to.</summary>
[Indexed]
public Guid GroupId { get; set; }
/// <summary>E-mail address of the member (FK to AccountContact.Address).</summary>
[Indexed]
public string MemberAddress { get; set; }
}