12 lines
370 B
C#
12 lines
370 B
C#
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<AlbumPhoto> Photos { get; set; } = new List<AlbumPhoto>();
|
|
}
|