using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Text; namespace ReallifeGamemode.Database.Entities { public class GroupBankAccount : IBankAccount { [Key] [DatabaseGenerated(DatabaseGeneratedOption.Identity)] public int Id { get; set; } public Group Group { get; set; } public int Balance { get; set; } } }