namespace NostrStreamer.Database;
public class User
{
public string PubKey { get; init; } = null!;
///
/// Stream key
///
public string StreamKey { get; init; } = null!;
///
/// Most recent nostr event published
///
public string? Event { get; init; }
///
/// Sats balance
///
public long Balance { get; init; }
///
/// Stream title
///
public string? Title { get; init; }
///
/// Stream summary
///
public string? Summary { get; init; }
///
/// Stream cover image
///
public string? Image { get; init; }
///
/// Comma seperated tags
///
public string? Tags { get; init; }
}