Files
moadiran/Shared/DTOs/Employee1.cs

18 lines
395 B
C#
Raw Normal View History

2024-04-16 13:30:40 +03:30
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; }
}
}