ToString overrides

This commit is contained in:
2025-07-03 20:38:18 +02:00
parent d6f0630a99
commit f05f2cc8e0
10 changed files with 21 additions and 8 deletions

View File

@ -35,4 +35,6 @@ public abstract class TrangaBaseContext<T> : DbContext where T : DbContext
return (false, e.Message);
}
}
public override string ToString() => $"{GetType().Name} {typeof(T).Name}";
}