8 lines
273 B
C#
8 lines
273 B
C#
namespace EntityFrameworkCore.Domain;
|
|
// Since C#11, you do not need to wrap in accolades anymore.
|
|
public class Team : BaseDomainModel
|
|
{
|
|
public int TeamId { get; set;} // This naming convention also allows EF to see this as a PK.
|
|
public string? Name { get; set; }
|
|
}
|