namespace ROLAC.API.Entities.Notifications; /// A Line group the bot was added to. Named by an admin after the join event. public class MessagingGroup { public int Id { get; set; } public string Channel { get; set; } = null!; // "line" public string ExternalId { get; set; } = null!; // Line groupId public string? Name { get; set; } public bool IsActive { get; set; } = true; public DateTime RegisteredAt { get; set; } }