14 lines
319 B
C#
Raw Permalink Normal View History

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; }
}
}