22 lines
675 B
C#
22 lines
675 B
C#
using System;
|
|
using _0_Framework.Application;
|
|
using CompanyManagment.App.Contracts.Loan;
|
|
|
|
namespace CompanyManagment.App.Contracts.Fine;
|
|
|
|
public class FineViewModel
|
|
{
|
|
public long Id { get; set; }
|
|
public long WorkshopId { get; set; }
|
|
public long EmployeeId { get; set; }
|
|
public string EmployeeFullName { get; set; }
|
|
public string PersonnelCode { get; set; }
|
|
public string Title { get; set; }
|
|
public string Amount { get; set; }
|
|
public string FineDate { get; set; }
|
|
public IsActive IsActive { get; set; }
|
|
public string CreationDate { get; set; }
|
|
public string YearFa { get; set; }
|
|
public string MonthFa { get; set; }
|
|
public double AmountDouble { get; set; }
|
|
} |