erp-platform/api/src/Kurs.Platform.Domain.Shared/Public/MapDto.cs

13 lines
379 B
C#
Raw Normal View History

2025-10-10 22:27:06 +00:00
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; }
}