25 lines
724 B
C#
25 lines
724 B
C#
using Marco.Pms.Model.ViewModels.Activities;
|
|
using Microsoft.AspNetCore.Mvc.ModelBinding.Validation;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Marco.Pms.Model.ViewModels.Expenses
|
|
{
|
|
public class AdvancePaymentTransactionVM
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string FinanceUId { get; set; } = default!;
|
|
public BasicEmployeeVM? Employee { get; set; }
|
|
public double Amount { get; set; }
|
|
public DateTime CreatedAt { get; set; }
|
|
|
|
public BasicEmployeeVM? CreatedBy { get; set; }
|
|
public bool IsActive { get; set; }
|
|
|
|
}
|
|
}
|