Код: Выделить всё
public class ViolationDto
{
public byte[] Photos { get;set; }
//Or
public string[] PhotoPaths { get;set; }
}
Код: Выделить всё
public class ViolationDto
{
public byte[] Photos { get;set; }
//Or
public string[] PhotoPaths { get;set; }
}
Код: Выделить всё
public class ViolationReportDto
{
public string Description { get; set; }
public ICollection<Image> Photos { get; set; }
}