17 lines
336 B
C#
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;
|
|
|
|
}
|
|
}
|