StudentManager/StudentManager/Common/CursonManager.cs
wangxiner55 fe9c8a3f0c 1
2024-09-12 21:12:58 +08:00

17 lines
336 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StudentManager.Common
{
public class CursonManager
{
public int CursonIndex { get; set; } = 0;
public int CursonCount { get; set; } = 0;
public string CursonName { get; set; } = string.Empty;
}
}