using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Text; namespace Church.Net.Entity { public class LineBotInfo { public string Id { get; set; } public string GroupId { get; set; } } public class LineClient { [Required, Key] public string Id { get; set; } public string LineId { get; set; } public bool IsGroup { get; set; } public bool IsManager { get; set; } public string Name { get; set; } } }