Files
moadiran/Shared/DTOs/Employee1.cs

21 lines
513 B
C#
Raw Permalink Normal View History

2024-04-16 13:30:40 +03:30
using System;
using System.Collections.Generic;
2024-05-05 18:15:37 +03:30
using System.ComponentModel.DataAnnotations;
2024-04-16 13:30:40 +03:30
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Shared.DTOs
{
public class Employee1
{
2024-05-05 18:15:37 +03:30
[Display(Name ="شناسه")]
2024-04-16 13:30:40 +03:30
public int Id { get; set; }
2024-05-05 18:15:37 +03:30
[Display(Name = "نام")]
2024-04-16 13:30:40 +03:30
public string Name { get; set; }
public string Designation { get; set; }
public DateOnly DOJ { get; set; }
public bool IsActive { get; set; }
}
}