8 lines
157 B
C#
8 lines
157 B
C#
namespace EntityFrameworkCore.Domain;
|
|
|
|
public class TeamsAndLeaguesView
|
|
{
|
|
public string? Name { get; set; }
|
|
public string? LeagueName { get; set; }
|
|
}
|