Revert "summarize bank accounts"

This reverts commit a21e7f887a.
This commit is contained in:
hydrant
2019-05-13 20:34:46 +02:00
parent a21e7f887a
commit 4500aa5275
10 changed files with 135 additions and 1499 deletions

View File

@@ -7,8 +7,14 @@ using System.Text;
namespace ReallifeGamemode.Server.Entities
{
public class GroupBankAccount : BankAccount, IBankAccount
public class GroupBankAccount : IBankAccount
{
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public int Id { get; set; }
public Group Group { get; set; }
public int Balance { get; set; }
}
}