mirror of
https://github.com/bitwarden/server
synced 2025-12-23 03:33:35 +00:00
* Revert "Add git blame entry (#2226)" This reverts commit239286737d. * Revert "Turn on file scoped namespaces (#2225)" This reverts commit34fb4cca2a.
28 lines
956 B
C#
28 lines
956 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Bit.Api.Models.Public
|
|
{
|
|
public abstract class GroupBaseModel
|
|
{
|
|
/// <summary>
|
|
/// The name of the group.
|
|
/// </summary>
|
|
/// <example>Development Team</example>
|
|
[Required]
|
|
[StringLength(100)]
|
|
public string Name { get; set; }
|
|
/// <summary>
|
|
/// Determines if this group can access all collections within the organization, or only the associated
|
|
/// collections. If set to <c>true</c>, this option overrides any collection assignments.
|
|
/// </summary>
|
|
[Required]
|
|
public bool? AccessAll { get; set; }
|
|
/// <summary>
|
|
/// External identifier for reference or linking this group to another system, such as a user directory.
|
|
/// </summary>
|
|
/// <example>external_id_123456</example>
|
|
[StringLength(300)]
|
|
public string ExternalId { get; set; }
|
|
}
|
|
}
|