1
0
mirror of https://github.com/chyzy/RSystem-MVC synced 2024-11-30 01:05:26 +01:00
RSystem-MVC-Fork/RSystem/Models/Db Models/Faculty.cs
2018-04-17 11:20:49 +02:00

18 lines
406 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Web;
namespace RSystem.Models
{
public class Faculty
{
public int FacultyId { get; set; }
public string Name { get; set; }
public string Abbrevation { get; set; }
public ICollection<Specialization> Specializations { get; set; }
}
}