20 lines
427 B
C#
20 lines
427 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace NikiforovaMV.Models;
|
|
|
|
public partial class Klient
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string Fullname { get; set; } = null!;
|
|
|
|
public string Entrytime { get; set; } = null!;
|
|
|
|
public string Releasetime { get; set; } = null!;
|
|
|
|
public string Numberofworkinghours { get; set; } = null!;
|
|
|
|
public string Historyofchanges { get; set; } = null!;
|
|
}
|