mirror of
https://github.com/chyzy/RSystem-MVC
synced 2024-11-25 16:00:27 +01:00
20 lines
479 B
C#
20 lines
479 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace RSystem.Models
|
|
{
|
|
public class PointsMultipiler
|
|
{
|
|
public int PointsMultipilerId { get; set; }
|
|
|
|
public int SpecializationId { get; set; }
|
|
public Specialization Specialization { get; set; }
|
|
|
|
public int MaturaSubjectId { get; set; }
|
|
public MaturaSubject MaturaSubject { get; set; }
|
|
|
|
public float Multipiler { get; set; }
|
|
}
|
|
} |