mirror of
https://github.com/chyzy/RSystem-MVC
synced 2024-12-02 01:30:27 +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; }
|
|||
|
}
|
|||
|
}
|