using Manager.Interfaces.Models; using System; using System.Collections.Generic; using System.Text; namespace Manager.Interfaces.DTO { public class ArticleDTO { //public List title { get; set; } //public List description { get; set; } public List content { get; set; } public string qrCode { get; set; } // MyVisit - QR code identifier int ? String ? public bool isContentTop { get; set; } // MyVisit - True if content is displayed at top, false otherwise public string audioId { get; set; } // MyVisit - Audio Identifier public bool isReadAudioAuto { get; set; } // MyVisit - True for audio play when open the article / false otherwise public List images { get; set; } // Will check if ok or if we need need type of image (simpler) } }