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

23 lines
507 B
C#
Raw Normal View History

using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
2019-08-20 16:49:38 +01:00
using Yavsc.Attributes.Validation;
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;
}
2019-08-20 16:49:38 +01:00
[YaStringLength(1024)]
public string DisplayName { get; set; }
}
2017-05-27 16:22:58 +02:00
}