2017-01-13 16:31:40 +01:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
2017-02-11 15:46:26 +01:00
|
|
|
namespace Yavsc.Models.Workflow.Profiles
|
2017-01-13 16:31:40 +01:00
|
|
|
{
|
|
|
|
|
using Models.Workflow;
|
2017-05-27 16:22:58 +02:00
|
|
|
using Yavsc;
|
2017-01-13 16:31:40 +01:00
|
|
|
public class FormationSettings : ISpecializationSettings
|
|
|
|
|
{
|
|
|
|
|
public virtual List<CoWorking> CoWorking { get; set; }
|
2017-05-27 16:22:58 +02:00
|
|
|
|
2017-01-13 16:31:40 +01:00
|
|
|
[Key]
|
|
|
|
|
public string UserId
|
|
|
|
|
{
|
|
|
|
|
get; set;
|
|
|
|
|
}
|
2017-03-03 17:36:29 +01:00
|
|
|
|
2017-01-13 16:31:40 +01:00
|
|
|
}
|
2017-05-27 16:22:58 +02:00
|
|
|
}
|