mirror of
https://github.com/chyzy/RSystem-MVC
synced 2024-12-01 17:25:27 +01:00
14 lines
325 B
C#
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; }
|
|
}
|
|
} |