using System.Collections.Generic; using System.ComponentModel.DataAnnotations; namespace CK.SCP.Models.AppBoxEntity { public class Title : IKeyID { [Key] public int ID { get; set; } [Required, StringLength(50)] public string Name { get; set; } [StringLength(500)] public string Remark { get; set; } public virtual ICollection Users { get; set; } } }