065b14b158
Adds the ability to have expressions evaluated when flags are added and removed.
37 lines
1.0 KiB
C#
37 lines
1.0 KiB
C#
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Disco.Models.Repository
|
|
{
|
|
public class UserFlag
|
|
{
|
|
[Key]
|
|
public int Id { get; set; }
|
|
|
|
[Required, StringLength(100)]
|
|
public string Name { get; set; }
|
|
|
|
[StringLength(500), DataType(DataType.MultilineText)]
|
|
public string Description { get; set; }
|
|
|
|
[Required, StringLength(25)]
|
|
public string Icon { get; set; }
|
|
[Required, StringLength(10)]
|
|
public string IconColour { get; set; }
|
|
|
|
public string UsersLinkedGroup { get; set; }
|
|
public string UserDevicesLinkedGroup { get; set; }
|
|
|
|
[DataType(DataType.MultilineText)]
|
|
public string OnAssignmentExpression { get; set; }
|
|
[DataType(DataType.MultilineText)]
|
|
public string OnUnassignmentExpression { get; set; }
|
|
|
|
public virtual IList<UserFlagAssignment> UserFlagAssignments { get; set; }
|
|
|
|
public override string ToString()
|
|
{
|
|
return this.Name;
|
|
}
|
|
}
|
|
} |