//------------------------------------------------------------------------------
//
// This code was generated from a template.
//
// Manual changes to this file may cause unexpected behavior in your application.
// Manual changes to this file will be overwritten if the code is regenerated.
//
// Produced by Entity Framework Visual Editor
// https://github.com/msawczyn/EFDesigner
//
//------------------------------------------------------------------------------
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Runtime.CompilerServices;
namespace Jellyfin.Data.Entities
{
public partial class Group
{
partial void Init();
///
/// Default constructor. Protected due to required properties, but present because EF needs it.
///
protected Group()
{
GroupPermissions = new System.Collections.Generic.HashSet();
ProviderMappings = new System.Collections.Generic.HashSet();
Preferences = new System.Collections.Generic.HashSet();
Init();
}
///
/// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving.
///
public static Group CreateGroupUnsafe()
{
return new Group();
}
///
/// Public constructor with required data
///
///
///
public Group(string name, global::Jellyfin.Data.Entities.User _user0)
{
if (string.IsNullOrEmpty(name)) throw new ArgumentNullException(nameof(name));
this.Name = name;
if (_user0 == null) throw new ArgumentNullException(nameof(_user0));
_user0.Groups.Add(this);
this.GroupPermissions = new System.Collections.Generic.HashSet();
this.ProviderMappings = new System.Collections.Generic.HashSet();
this.Preferences = new System.Collections.Generic.HashSet();
Init();
}
///
/// Static create function (for use in LINQ queries, etc.)
///
///
///
public static Group Create(string name, global::Jellyfin.Data.Entities.User _user0)
{
return new Group(name, _user0);
}
/*************************************************************************
* Properties
*************************************************************************/
///
/// Identity, Indexed, Required
///
[Key]
[Required]
public int Id { get; protected set; }
///
/// Required, Max length = 255
///
[Required]
[MaxLength(255)]
[StringLength(255)]
public string Name { get; set; }
///
/// Concurrency token
///
[Timestamp]
public Byte[] Timestamp { get; set; }
/*************************************************************************
* Navigation properties
*************************************************************************/
public virtual ICollection GroupPermissions { get; protected set; }
public virtual ICollection ProviderMappings { get; protected set; }
public virtual ICollection Preferences { get; protected set; }
}
}