using Domain.Interfaces; namespace Domain; public class Project { public Guid Id { get; set; } public IEnumerable Layers { get; set; } = []; public uint Width { get; set; } public uint Height { get; set; } }