15 lines
329 B
C#
15 lines
329 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace NostrStreamer.Database;
|
|
|
|
public class PushSubscriptionTarget
|
|
{
|
|
public Guid Id { get; init; } = Guid.NewGuid();
|
|
|
|
[MaxLength(64)]
|
|
public string SubscriberPubkey { get; init; } = null!;
|
|
|
|
[MaxLength(64)]
|
|
public string TargetPubkey { get; init; } = null!;
|
|
}
|