NonInventPurchasingSystem/CPRNIMS.Infrastructure/ViewModel/Account/DepartmentVM.cs
2026-01-20 07:44:30 +08:00

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