From 808a6d6a3ef5927e4277debce714fc73aef18f28 Mon Sep 17 00:00:00 2001 From: Kevin Matsubara Date: Sun, 6 Apr 2025 20:30:17 +0200 Subject: [PATCH] Add Name property to League model. --- EntityFrameworkCore.Domain/League.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EntityFrameworkCore.Domain/League.cs b/EntityFrameworkCore.Domain/League.cs index 14b0e7c..f586c7d 100644 --- a/EntityFrameworkCore.Domain/League.cs +++ b/EntityFrameworkCore.Domain/League.cs @@ -2,5 +2,5 @@ public class League : BaseDomainModel { - + public string? Name { get; set; } }