14 lines
406 B
C#
14 lines
406 B
C#
namespace ConstructorApp.DtoLayer.TeamDto
|
|
{
|
|
public class GetTeamDto
|
|
{
|
|
public int TeamID { get; set; }
|
|
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; }
|
|
}
|
|
}
|