mirror of
https://github.com/bitwarden/server
synced 2026-01-07 02:53:38 +00:00
15 lines
410 B
C#
15 lines
410 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Bit.Core.Models.Api.Public
|
|
{
|
|
public abstract class CollectionBaseModel
|
|
{
|
|
/// <summary>
|
|
/// External identifier for reference or linking this collection to another system.
|
|
/// </summary>
|
|
/// <example>external_id_123456</example>
|
|
[StringLength(300)]
|
|
public string ExternalId { get; set; }
|
|
}
|
|
}
|