LinkedSystemDto.cs 352 B

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