1
0
mirror of https://github.com/bitwarden/server synced 2026-01-02 16:43:25 +00:00
Files
server/src/Api/Models/Public/CollectionBaseModel.cs
2022-08-29 16:06:55 -04:00

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; }
}