11 lines
188 B
C#
Raw Permalink Normal View History

2024-10-13 17:04:47 +08:00
namespace LMS.Repository.DTO;
public class SoftwareDao
{
public string Version { get; set; }
public string Author { get; set; }
public string Description { get; set; }
}