2021-04-06 18:17:23 +02:00

13 lines
334 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Manager.Interfaces.DTO.SubSection
{
public class Video
{
public string Title { get; set; } // Dictionary<string, object> with all languages
public string Source { get; set; } // url to ressource id (local) or on internet
}
}