13 lines
379 B
C#
13 lines
379 B
C#
|
|
namespace Kurs.Platform.Public;
|
||
|
|
|
||
|
|
public class MapDto
|
||
|
|
{
|
||
|
|
public string Title { get; set; }
|
||
|
|
public string Src { get; set; }
|
||
|
|
public string Width { get; set; }
|
||
|
|
public string Height { get; set; }
|
||
|
|
public string Style { get; set; }
|
||
|
|
public bool? AllowFullScreen { get; set; }
|
||
|
|
public string Loading { get; set; }
|
||
|
|
public string ReferrerPolicy { get; set; }
|
||
|
|
}
|