15 lines
448 B
C#
15 lines
448 B
C#
namespace ConstructorAppUI.Dtos.FooterDtos
|
|
{
|
|
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; }
|
|
}
|
|
}
|