- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace ProductionLineMonitor.Core.Dtos
- {
- public class UserCreateOrUpdateDto
- {
- public string JobNo { get; set; }
- public string Name { get; set; }
- public string RoleId { get; set; }
- }
- }
|