Files
moadiran/Shared/DTOs/Employee1.cs
mmrbnjd df6c31eac2 ltable
2024-05-05 18:15:37 +03:30

21 lines
513 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Shared.DTOs
{
public class Employee1
{
[Display(Name ="شناسه")]
public int Id { get; set; }
[Display(Name = "نام")]
public string Name { get; set; }
public string Designation { get; set; }
public DateOnly DOJ { get; set; }
public bool IsActive { get; set; }
}
}