Files
zap-stream-api/NostrStreamer/Database/UserStreamForwards.cs
2023-12-07 22:46:36 +00:00

14 lines
324 B
C#

namespace NostrStreamer.Database;
public class UserStreamForwards
{
public Guid Id { get; init; } = Guid.NewGuid();
public string UserPubkey { get; init; } = null!;
public User User { get; init; } = null!;
public string Name { get; init; } = null!;
public string Target { get; init; } = null!;
}