LMS.service/LMS.Repository/DTO/SoftwareDao.cs
2024-10-13 17:04:47 +08:00

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