Files
constructdemo/ConstructorApp.DtoLayer/FooterDto/GetFooterDto.cs
2025-05-01 15:18:30 +03:00

15 lines
449 B
C#

namespace ConstructorApp.DtoLayer.FooterDto
{
public class GetFooterDto
{
public int FooterID { get; set; }
public string? LogoUrl { get; set; }
public string? Phone { get; set; }
public string? Mail { get; set; }
public string? Facebook { get; set; }
public string? Instagram { get; set; }
public string? Linkedin { get; set; }
public string? Youtube { get; set; }
}
}