mirror of
https://github.com/chyzy/RSystem-MVC
synced 2024-11-26 08:10:28 +01:00
24 lines
425 B
C#
24 lines
425 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace RSystem.Models
|
|
{
|
|
|
|
public enum MaturaType{
|
|
Nowa,Stara,Międzynarodowa
|
|
}
|
|
|
|
public class MaturaSubject
|
|
{
|
|
public int MaturaSubjectId { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
public string Description { get; set; }
|
|
|
|
public MaturaType MaturaType { get; set; }
|
|
|
|
}
|
|
} |