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