23 lines
644 B
C#
23 lines
644 B
C#
using Manager.Interfaces.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Manager.Interfaces.DTO
|
|
{
|
|
public class SliderDTO
|
|
{
|
|
public List<ContentDTO> contents { get; set; }
|
|
}
|
|
|
|
public class ContentDTO
|
|
{
|
|
public List<TranslationDTO> title { get; set; }
|
|
public List<TranslationDTO> description { get; set; }
|
|
public string resourceId { get; set; }
|
|
public string resourceUrl { get; set; } // url to firebase storage or on internet
|
|
public int order { get; set; } // Order to show
|
|
public ResourceType resourceType { get; set; }
|
|
}
|
|
}
|