Class Group
Assembly: OEMS.Core.dll
Syntax
[Table("Groups")]
public class Group
Properties
Color
Declaration
[Required]
[StringLength(7)]
public string Color { get; set; }
Property Value
Description
Declaration
public string Description { get; set; }
Property Value
Events
Declaration
public virtual ICollection<Event> Events { get; set; }
Property Value
GroupUsers
Declaration
public virtual ICollection<GroupUser> GroupUsers { get; set; }
Property Value
Id
Declaration
[Key]
public Guid Id { get; set; }
Property Value
Name
Declaration
[Required]
[StringLength(100)]
public string Name { get; set; }
Property Value
OrgId
Declaration
[Required]
public Guid OrgId { get; set; }
Property Value
Organization
Declaration
[ForeignKey("OrgId")]
public virtual Organization Organization { get; set; }
Property Value