12 lines
177 B
C#
12 lines
177 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace Subd;
|
|||
|
|
|||
|
public partial class User
|
|||
|
{
|
|||
|
public int IdUser { get; set; }
|
|||
|
|
|||
|
public string? Nikname { get; set; }
|
|||
|
}
|