15 lines
544 B
C#
15 lines
544 B
C#
using ManagerService.DTOs;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Manager.DTOs
|
|
{
|
|
public class OldArticleDTO
|
|
{
|
|
public List<TranslationDTO> content { get; set; }
|
|
public bool isContentTop { get; set; } // MyVisit - True if content is displayed at top, false otherwise
|
|
public List<TranslationDTO> audioIds { get; set; }
|
|
public bool isReadAudioAuto { get; set; } // MyVisit - True for audio play when open the article / false otherwise
|
|
public List<ContentDTO> contents { get; set; }
|
|
}
|
|
}
|