CimPasswordDto.cs 327 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace ProductionLineMonitor.Application.Services.CimService.Dtos
  5. {
  6. public class CimPasswordDto
  7. {
  8. public int No { get; set; }
  9. public bool Enabled { get; set; }
  10. public string Password { get; set; } = string.Empty;
  11. }
  12. }