using EventFlow.Core;
using EventFlow.ValueObjects;
namespace Books.Api.Domain.Attachments;
///
/// Identity for Attachment aggregate.
/// Bilag (attachments) are required by Bogføringsloven § 6.
///
public class AttachmentId : Identity
{
public AttachmentId(string value) : base(value) { }
}