using System;
using SQLite;
namespace Wino.Core.Domain.Entities.Shared;
///
/// A named group of contacts that can be expanded to individual addresses during mail composition.
///
public class ContactGroup
{
[PrimaryKey]
public Guid Id { get; set; }
/// Display name of the group (e.g., "Team Alpha", "Family").
public string Name { get; set; }
/// Optional description for the group.
public string Description { get; set; }
}