19 lines
302 B
C#
19 lines
302 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace GradeBookServer.Domain.Enums
|
|
{
|
|
public enum GradeValue
|
|
{
|
|
Excellent,
|
|
Good,
|
|
Satisfactory,
|
|
Fail,
|
|
Absence,
|
|
Pass,
|
|
}
|
|
}
|