11 lines
188 B
C#
11 lines
188 B
C#
namespace LMS.Repository.DTO;
|
|
|
|
public class SoftwareDao
|
|
{
|
|
public string Version { get; set; }
|
|
|
|
public string Author { get; set; }
|
|
|
|
public string Description { get; set; }
|
|
}
|