Files
moadiran/Shared/DTOs/Employee1.cs
mmrbnjd 8ea1a852d5 ...
2024-04-16 13:30:40 +03:30

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; }
}
}