18 lines
524 B
C#
18 lines
524 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Manager.Interfaces.DTO
|
|
{
|
|
public class SliderDTO : SectionDTO
|
|
{
|
|
public List<ImageDTO> Images { get; set; }
|
|
}
|
|
|
|
public class ImageDTO {
|
|
public string Title { get; set; } // Dictionary<string, object> with all languages
|
|
public string Description { get; set; } // Dictionary<string, object> with all languages
|
|
public string Source { get; set; } // url to ressource id (local) or on internet
|
|
}
|
|
}
|