This commit is contained in:
mmrbnjd
2024-04-16 13:30:40 +03:30
parent 949b48f5cf
commit 8ea1a852d5
3 changed files with 89 additions and 1 deletions

17
Shared/DTOs/Employee1.cs Normal file
View File

@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Shared.DTOs
{
public class Employee1
{
public int Id { get; set; }
public string Name { get; set; }
public string Designation { get; set; }
public DateOnly DOJ { get; set; }
public bool IsActive { get; set; }
}
}