14 lines
336 B
C#
14 lines
336 B
C#
|
|
using EventFlow.Core;
|
||
|
|
using EventFlow.ValueObjects;
|
||
|
|
|
||
|
|
namespace Books.Api.Domain.Attachments;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Identity for Attachment aggregate.
|
||
|
|
/// Bilag (attachments) are required by Bogføringsloven § 6.
|
||
|
|
/// </summary>
|
||
|
|
public class AttachmentId : Identity<AttachmentId>
|
||
|
|
{
|
||
|
|
public AttachmentId(string value) : base(value) { }
|
||
|
|
}
|