mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-03-11 12:35:48 -04:00
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com> Co-authored-by: Joe Milazzo <josephmajora@gmail.com>
14 lines
313 B
C#
14 lines
313 B
C#
namespace Kavita.Models.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!;
|
|
}
|