9 lines
193 B
C#
9 lines
193 B
C#
using System;
|
|
|
|
namespace CompanyManagment.App.Contracts.RollCall;
|
|
|
|
public class EditRollCall : CreateRollCall
|
|
{
|
|
public long Id { get; set; }
|
|
public DateTime ShiftDate { get; set; }
|
|
} |