2017-01-13 16:31:40 +01:00
|
|
|
using System.ComponentModel.DataAnnotations;
|
2019-08-20 16:49:38 +01:00
|
|
|
using Yavsc.Attributes.Validation;
|
2017-01-13 16:31:40 +01:00
|
|
|
|
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;
|
2025-02-24 23:29:48 +00:00
|
|
|
public class FormationSettings : IUserSettings
|
2017-01-13 16:31:40 +01:00
|
|
|
{
|
|
|
|
|
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
|
|
|
|
2019-08-20 16:49:38 +01:00
|
|
|
[YaStringLength(1024)]
|
|
|
|
|
public string DisplayName { get; set; }
|
|
|
|
|
|
2017-01-13 16:31:40 +01:00
|
|
|
}
|
2017-05-27 16:22:58 +02:00
|
|
|
}
|