9 lines
169 B
C#
9 lines
169 B
C#
namespace EntityFrameworkCore.API;
|
|
|
|
public class TeamDto
|
|
{
|
|
public int Id { get; set; }
|
|
public string Name { get; set; }
|
|
public string CoachName { get; set; }
|
|
}
|