using System; using System.Collections.Generic; using NexusReader.Application.DTOs.User; namespace NexusReader.UI.Shared.Services; public interface ILibraryStateService { List? OwnedBooks { get; set; } event Action? OnBooksChanged; void NotifyBooksChanged(); }