1
0
mirror of https://github.com/chyzy/RSystem-MVC synced 2024-11-25 16:00:27 +01:00
RSystem-MVC-Fork/RSystem/Models/Db Models/PointsMultipiler.cs
2018-04-17 11:20:49 +02:00

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; }
}
}