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

20 lines
392 B
C#

using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
namespace Yavsc.Models.Workflow.Profiles
{
using Models.Workflow;
using Yavsc;
public class FormationSettings : ISpecializationSettings
{
public virtual List<CoWorking> CoWorking { get; set; }
[Key]
public string UserId
{
get; set;
}
}
}