27 lines
780 B
C#
27 lines
780 B
C#
using Marco.Pms.Model.Employees;
|
|
using Marco.Pms.Model.Entitlements;
|
|
using Microsoft.AspNetCore.Mvc.ModelBinding.Validation;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Marco.Pms.Model.Dtos.Employees
|
|
{
|
|
public class AttendanceDto
|
|
{
|
|
public string Comment { get; set; }
|
|
public int EmployeeID { get; set; }
|
|
public DateTime? InTime { get; set; }
|
|
public DateTime? OutTime { get; set; }
|
|
public int ShiftId { get; set; }
|
|
public decimal? Latitude { get; set; }
|
|
public decimal? Longitude { get; set; }
|
|
public bool IsApproved { get; set; }
|
|
}
|
|
|
|
}
|