using System.ComponentModel.DataAnnotations;
namespace Bit.Api.Models.Public;
public abstract class CollectionBaseModel
{
///
/// External identifier for reference or linking this collection to another system.
///
/// external_id_123456
[StringLength(300)]
public string ExternalId { get; set; }
}