9 lines
325 B
C#
9 lines
325 B
C#
namespace EntityFrameworkCore.Domain;
|
|
// Since C#11, you do not need to wrap in accolades anymore.
|
|
public class Coach : BaseDomainModel
|
|
{
|
|
public int Id { get; set; } // Anything called "Id" is automatically a Primary Key.
|
|
public string Name { get; set; } // Strings are automatically become VARCHAR database types.
|
|
}
|
|
|