21 lines
513 B
C#
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; }
|
|
}
|
|
}
|