11 lines
288 B
C#
11 lines
288 B
C#
using ManagerService.DTOs;
|
|
|
|
namespace Manager.DTOs
|
|
{
|
|
public class WebDTO : 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
|
|
}
|
|
}
|