Files
myoffice_public/MyOffice.Data.Models/Accounts/AccountAccountCategory.cs
T

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