11 lines
290 B
C#
11 lines
290 B
C#
using ManagerService.DTOs;
|
|
|
|
namespace Manager.DTOs
|
|
{
|
|
public class VideoDTO : SectionDTO
|
|
{
|
|
//public string Title { get; set; } // Dictionary<string, object> with all languages
|
|
public string source { get; set; } // url to resource id (local) or on internet
|
|
}
|
|
}
|