mirror of
https://github.com/chyzy/RSystem-MVC
synced 2024-11-30 01:05:26 +01:00
18 lines
406 B
C#
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; }
|
|
}
|
|
} |