using MTWorkHR.Core.Entities.Base;
using MTWorkHR.Core.Global;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace MTWorkHR.Core.Entities
{
    public class InvoiceDto : FullAuditEntity
    {
        public string? InvoiceNumber { get; set; }
        public DateTime? InvoiceDate{ get; set; }
        public decimal? Amount{ get; set; }
        public int? Status{ get; set; }
        public int? ContractId{ get; set; }
        public int? UserId { get; set; }

    }
}