practicekea_backend/microservices/_layers/domain/ViewModels/UsersForUpdate.cs

10 lines
225 B
C#
Raw Permalink Normal View History

2024-12-02 13:24:34 +00:00
namespace OnlineAssessment.Domain.ViewModels
{
public class UsersForUpdate
{
public string IDs { get; set; }
public string Operation { get; set; }
public int UpdatedBy { get; set; }
}
}