YD_SmartSports.Api/VOL.Model/Curricular/CourseCategoryDto.cs

20 lines
382 B
C#
Raw Normal View History

2025-06-06 16:55:14 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace VOL.Model
{
public class CourseCategoryDto
{
public int Id { get; set; }
public string CategoryName { get; set; }
}
public class CourseCategoryVo : PageDto
{
public string CategoryName { get; set; }
}
}