10 lines
No EOL
234 B
C#
10 lines
No EOL
234 B
C#
namespace API.Entities
|
|
{
|
|
public class FolderPath
|
|
{
|
|
public int Id { get; set; }
|
|
public string Path { get; set; }
|
|
public Library Library { get; set; }
|
|
public int LibraryId { get; set; }
|
|
}
|
|
} |