19 lines
604 B
C#
19 lines
604 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Manager.Interfaces.DTO.SubSection
|
|
{
|
|
public class Slider
|
|
{
|
|
public string Title { get; set; } // Dictionary<string, object> with all languages
|
|
public List<Image> Images { get; set; }
|
|
}
|
|
|
|
public class Image {
|
|
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
|
|
}
|
|
}
|