fix
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
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!;
|
||||
}
|
||||
Reference in New Issue
Block a user