From bcb084d733ba0557c2b870b47f639cbc4f6eee3a Mon Sep 17 00:00:00 2001 From: Kevin Matsubara Date: Mon, 14 Apr 2025 22:13:48 +0200 Subject: [PATCH] Add soft delete flag to League model. --- EntityFrameworkCore.Domain/League.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/EntityFrameworkCore.Domain/League.cs b/EntityFrameworkCore.Domain/League.cs index 030a08a..5309c4b 100644 --- a/EntityFrameworkCore.Domain/League.cs +++ b/EntityFrameworkCore.Domain/League.cs @@ -3,5 +3,6 @@ public class League : BaseDomainModel { public string? Name { get; set; } + public bool IsDeleted { get; set; } public List Teams { get; set; } = new List() { }; }