mirror of
https://github.com/bitwarden/server
synced 2026-01-02 16:43:25 +00:00
14 lines
367 B
C#
14 lines
367 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Bit.Api.Models.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; }
|
|
}
|