20 lines
431 B
C#
20 lines
431 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
|
|||
|
|
namespace NikiforovaMV.Models;
|
|||
|
|
|
|||
|
|
public partial class Personnel
|
|||
|
|
{
|
|||
|
|
public int Id { get; set; }
|
|||
|
|
|
|||
|
|
public string Searchforpartners { get; set; } = null!;
|
|||
|
|
|
|||
|
|
public string Ratingofchanges { get; set; } = null!;
|
|||
|
|
|
|||
|
|
public string Applications { get; set; } = null!;
|
|||
|
|
|
|||
|
|
public string Permissiontowork { get; set; } = null!;
|
|||
|
|
|
|||
|
|
public string Tasks { get; set; } = null!;
|
|||
|
|
}
|