12 lines
256 B
C#
12 lines
256 B
C#
using API.Entities.Enums;
|
|
|
|
namespace API.DTOs;
|
|
|
|
/// <summary>
|
|
/// Simple pairing of LibraryId and LibraryType
|
|
/// </summary>
|
|
public sealed record LibraryTypeDto
|
|
{
|
|
public int LibraryId { get; set; }
|
|
public LibraryType LibraryType { get; set; }
|
|
}
|