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