namespace LMS.Repository.DTO.Software { public class SoftwareBasicDto { public string Id { get; set; } = string.Empty; public string SoftwareName { get; set; } = string.Empty; public string SoftwareCode { get; set; } = string.Empty; public bool IsUse { get; set; } } }