using System; using System.Collections.Generic; namespace FinancialManagement.Models; public partial class Category { public int CategoryId { get; set; } public string Title { get; set; } = null!; public int IdUser { get; set; } public virtual ICollection Finances { get; set; } = new List(); public virtual User IdUserNavigation { get; set; } = null!; }