Files
myoffice/MyOffice.Data.Models/Accounts/AccountAccountCategory.cs
T
2023-06-17 14:16:09 +03:00

10 lines
291 B
C#

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!;
}