16 lines
293 B
C#
16 lines
293 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace samusev_42;
|
|
|
|
public partial class Name
|
|
{
|
|
public int IdName { get; set; }
|
|
|
|
public string NameFio { get; set; } = null!;
|
|
|
|
public int IdUser { get; set; }
|
|
|
|
public virtual User IdUserNavigation { get; set; } = null!;
|
|
}
|