1234567891011121314151617 |
- 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<Finance> Finances { get; set; } = new List<Finance>();
- public virtual User IdUserNavigation { get; set; } = null!;
- }
|