12 lines
No EOL
280 B
C#
12 lines
No EOL
280 B
C#
using System.Collections.Generic;
|
|
|
|
namespace API.DTOs
|
|
{
|
|
public class VolumeDto
|
|
{
|
|
public int Id { get; set; }
|
|
public string Number { get; set; }
|
|
public string CoverImage { get; set; }
|
|
public ICollection<string> Files { get; set; }
|
|
}
|
|
} |