using System.ComponentModel.DataAnnotations; using Hutopy.Common.Domain; namespace Hutopy.Modules.Contents.Data; public class Album : Entity { public bool IsDeleted { get; private set; } // private set → EF updates it [MaxLength(255)] public required string Title { get; set; } public IList Photos { get; set; } = new List(); }