mirror of
https://github.com/chyzy/RSystem-MVC
synced 2024-12-02 01:30:27 +01:00
16 lines
310 B
C#
16 lines
310 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Web;
|
|||
|
using RSystem.Models;
|
|||
|
|
|||
|
namespace RSystem.ViewModels
|
|||
|
{
|
|||
|
public class PreferencesViewModel
|
|||
|
{
|
|||
|
public int RecruitId { get; set; }
|
|||
|
|
|||
|
public IEnumerable<RecruitPreference> Preferences { get; set; }
|
|||
|
|
|||
|
}
|
|||
|
}
|