14 lines
404 B
C#
14 lines
404 B
C#
using System.Collections.Generic;
|
|
using _0_Framework.Application;
|
|
|
|
namespace CompanyManagment.App.Contracts.Fine;
|
|
|
|
public class CreateFineViewModel
|
|
{
|
|
public List<long> EmployeeIds { get; set; }
|
|
public long WorkshopId { get; set; }
|
|
public string Title { get; set; }
|
|
public string Amount { get; set; }
|
|
public IsActive IsActive { get; set; }
|
|
public string FineDate { get; set; }
|
|
} |