14 lines
319 B
C#
14 lines
319 B
C#
|
|
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; }
|
|||
|
|
}
|
|||
|
|
}
|