using System;
using System.Collections.Generic;
using API.Entities.Enums;
namespace API.DTOs
{
public class LibraryDto
{
public int Id { get; init; }
public string Name { get; init; }
///
/// Last time Library was scanned
///
public DateTime LastScanned { get; init; }
public LibraryType Type { get; init; }
public ICollection Folders { get; init; }
}
}