17 lines
419 B
C#
17 lines
419 B
C#
using CPRNIMS.Infrastructure.Entities.Common;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CPRNIMS.Infrastructure.ViewModel.Account
|
|
{
|
|
public class DepartmentVM : CommonProperties
|
|
{
|
|
public int DepartmentId { get; set; }
|
|
public string? Department { get; set; }
|
|
public bool IsActive { get; set; }
|
|
}
|
|
}
|