11 lines
233 B
C#
11 lines
233 B
C#
using System;
|
|
|
|
namespace Demka_Snova_1.Hardik.Conect.Dao;
|
|
|
|
public class historyDao
|
|
{
|
|
public int id { get; set; }
|
|
public string user { get; set; }
|
|
public DateTime Vhod { get; set; }
|
|
public string status { get; set; }
|
|
} |