using System; using System.Collections.Generic; namespace FinancialManagement.Models; public partial class User { public int UserId { get; set; } public string Username { get; set; } = null!; public string Login { get; set; } = null!; public string Password { get; set; } = null!; public string Phone { get; set; } = null!; public virtual ICollection Categories { get; set; } = new List(); public virtual ICollection Finances { get; set; } = new List(); }