Files
2025-05-01 15:18:30 +03:00

13 lines
369 B
C#

namespace ConstructorApp.DtoLayer.TeamDto
{
public class CreateTeamDto
{
public string? NameSurname { get; set; }
public string? Title { get; set; }
public string? ImageUrl { get; set; }
public string? Facebook { get; set; }
public string? Instagram { get; set; }
public string? Linkedin { get; set; }
}
}