26 lines
444 B
C#
26 lines
444 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace UniversityDataModels.Enums
|
|||
|
{
|
|||
|
public enum AttestationScore
|
|||
|
{
|
|||
|
Неявка = -1,
|
|||
|
|
|||
|
Незачёт = 0,
|
|||
|
|
|||
|
Зачёт = 1,
|
|||
|
|
|||
|
Неудовлетворительно = 2,
|
|||
|
|
|||
|
Удовлетворительно = 3,
|
|||
|
|
|||
|
Хорошо = 4,
|
|||
|
|
|||
|
Отлично = 5
|
|||
|
}
|
|||
|
}
|