erp-platform/api/src/Kurs.Platform.Domain.Shared/Public/MapDto.cs
2025-10-11 01:27:06 +03:00

13 lines
No EOL
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; }
}