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

14 lines
325 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using RSystem.Models;
namespace RSystem.Areas.Admin.Models
{
public class SpecializationCreatePOSTViewModel
{
public Specialization Specialization { get; set; }
public string MultipilersJSON { get; set; }
}
}