LinkedSystemDto.cs 350 B

12345678910111213141516
  1. 
  2. namespace Aip.Service.Models.Dto;
  3. public partial class LinkedSystemDto
  4. {
  5. public int SystemId { get; set; }
  6. public string SystemName { get; set; } = string.Empty;
  7. public DateTime CreatedAt { get; set; }
  8. public bool UseYn { get; set; }
  9. public string? SystemDesc { get; set; }
  10. public DateTime? DeletedAt { get; set; }
  11. }