namespace MyOffice.Data.Models.Accounts; public class AccountAccountCategory { public int Id { get; set; } public Guid AccountId { get; set; } public Account Account { get; set; } = null!; public Guid CategoryId { get; set; } public AccountCategory Category { get; set; } = null!; }