- using System;
- using System.Collections.Generic;
- namespace InvestTracker.Entities;
- public partial class Title
- {
- public int Id { get; set; }
- public string Name { get; set; } = null!;
- public virtual ICollection<Employee> Employees { get; set; } = new List<Employee>();
- }
|