Search Results for

    Show / Hide Table of Contents

    Class Group

    Inheritance
    object
    Group
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: OEMS.Core.Domain
    Assembly: OEMS.Core.dll
    Syntax
    [Table("Groups")]
    public class Group

    Properties

    Color

    Declaration
    [Required]
    [StringLength(7)]
    public string Color { get; set; }
    Property Value
    Type Description
    string

    Description

    Declaration
    public string Description { get; set; }
    Property Value
    Type Description
    string

    Events

    Declaration
    public virtual ICollection<Event> Events { get; set; }
    Property Value
    Type Description
    ICollection<Event>

    GroupUsers

    Declaration
    public virtual ICollection<GroupUser> GroupUsers { get; set; }
    Property Value
    Type Description
    ICollection<GroupUser>

    Id

    Declaration
    [Key]
    public Guid Id { get; set; }
    Property Value
    Type Description
    Guid

    Name

    Declaration
    [Required]
    [StringLength(100)]
    public string Name { get; set; }
    Property Value
    Type Description
    string

    OrgId

    Declaration
    [Required]
    public Guid OrgId { get; set; }
    Property Value
    Type Description
    Guid

    Organization

    Declaration
    [ForeignKey("OrgId")]
    public virtual Organization Organization { get; set; }
    Property Value
    Type Description
    Organization
    In this article
    Back to top Generated by DocFX