1
0
mirror of https://github.com/bitwarden/server synced 2026-01-07 02:53:38 +00:00
Files
server/src/Core/Models/Api/Public/CollectionBaseModel.cs
2019-03-07 15:18:27 -05:00

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