yavsc/Yavsc/Models/Workflow/Profiles/FormationSettings.cs

19 lines
392 B
C#
Raw Normal View History

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