EnumTheorem.cs

21 lines | 475 B Blame History Raw Download
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.ComponentModel;

namespace WPF.Model
{
    public enum EnumTheorem
    {
        [Description("Вторая теорема")]
        Second = 2,
        [Description("Третья теорема")]
        Third = 3,
        [Description("Четвертая теорема")]
        Forth = 4,
        [Description("Пятая теорема")]
        Fifth = 5,
    }
}