14 lines
439 B
C#
14 lines
439 B
C#
namespace ConstructorAppUI.Dtos.TeamDtos
|
|
{
|
|
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; }
|
|
public IFormFile? ImageFile { get; set; } // Yüklenecek dosya
|
|
}
|
|
}
|