15 lines
452 B
C#
15 lines
452 B
C#
namespace ConstructorApp.DtoLayer.FooterDto
|
|
{
|
|
public class UpdateFooterDto
|
|
{
|
|
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; }
|
|
}
|
|
}
|