Add project files.
This commit is contained in:
13
ConstructorAppUI/Dtos/TeamDtos/CreateTeamDto.cs
Normal file
13
ConstructorAppUI/Dtos/TeamDtos/CreateTeamDto.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
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
|
||||
}
|
||||
}
|
||||
13
ConstructorAppUI/Dtos/TeamDtos/GetTeamDto.cs
Normal file
13
ConstructorAppUI/Dtos/TeamDtos/GetTeamDto.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
namespace ConstructorAppUI.Dtos.TeamDtos
|
||||
{
|
||||
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; }
|
||||
}
|
||||
}
|
||||
13
ConstructorAppUI/Dtos/TeamDtos/ResultTeamDto.cs
Normal file
13
ConstructorAppUI/Dtos/TeamDtos/ResultTeamDto.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
namespace ConstructorAppUI.Dtos.TeamDtos
|
||||
{
|
||||
public class ResultTeamDto
|
||||
{
|
||||
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; }
|
||||
}
|
||||
}
|
||||
13
ConstructorAppUI/Dtos/TeamDtos/UpdateTeamDto.cs
Normal file
13
ConstructorAppUI/Dtos/TeamDtos/UpdateTeamDto.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
namespace ConstructorAppUI.Dtos.TeamDtos
|
||||
{
|
||||
public class UpdateTeamDto
|
||||
{
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user