18 lines
395 B
C#
18 lines
395 B
C#
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; }
|
|
}
|
|
}
|