1
0
mirror of https://github.com/chyzy/RSystem-MVC synced 2024-11-26 00:05:27 +01:00
RSystem-MVC-Fork/RSystem/Models/Db Models/PointsMultipiler.cs

20 lines
479 B
C#
Raw Normal View History

2018-04-17 11:20:49 +02:00
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; }
}
}