8 lines
239 B
C#
8 lines
239 B
C#
namespace EntityFrameworkCore.Domain;
|
|
// Since C#11, you do not need to wrap in accolades anymore.
|
|
public class Coach : BaseDomainModel
|
|
{
|
|
public string Name { get; set; } // Strings are automatically become VARCHAR database types.
|
|
}
|
|
|