Category.cs 402 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. namespace FinancialManagement.Models;
  4. public partial class Category
  5. {
  6. public int CategoryId { get; set; }
  7. public string Title { get; set; } = null!;
  8. public int IdUser { get; set; }
  9. public virtual ICollection<Finance> Finances { get; set; } = new List<Finance>();
  10. public virtual User IdUserNavigation { get; set; } = null!;
  11. }