// FIXME: Update this file to be null safe and then delete the line below
#nullable disable
using System.ComponentModel.DataAnnotations;
namespace Bit.Api.AdminConsole.Public.Models;
public abstract class GroupBaseModel
{
///
/// The name of the group.
///
/// Development Team
[Required]
[StringLength(100)]
public string Name { get; set; }
///
/// External identifier for reference or linking this group to another system, such as a user directory.
///
/// external_id_123456
[StringLength(300)]
public string ExternalId { get; set; }
}