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

22 lines
463 B
C#
Raw Normal View History

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;
2025-02-24 23:29:48 +00:00
public class FormationSettings : IUserSettings
{
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
}