using API.Entities.Enums; namespace API.DTOs; /// /// Simple pairing of LibraryId and LibraryType /// public sealed record LibraryTypeDto { public int LibraryId { get; set; } public LibraryType LibraryType { get; set; } }