- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace ProductionLineMonitor.Application.Services.CimService.Dtos
- {
- public class CimPasswordDto
- {
- public int No { get; set; }
- public bool Enabled { get; set; }
- public string Password { get; set; } = string.Empty;
- }
- }
|