mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-23 15:30:34 -04:00
14 lines
303 B
C#
14 lines
303 B
C#
namespace API.DTOs.System;
|
|
|
|
public sealed record DirectoryDto
|
|
{
|
|
/// <summary>
|
|
/// Name of the directory
|
|
/// </summary>
|
|
public string Name { get; set; } = default!;
|
|
/// <summary>
|
|
/// Full Directory Path
|
|
/// </summary>
|
|
public string FullPath { get; set; } = default!;
|
|
}
|