Track duration

This commit is contained in:
2024-02-21 21:16:30 +00:00
parent d53845154f
commit b2540e7bdf
6 changed files with 523 additions and 8 deletions

View File

@ -45,6 +45,11 @@ public class UserStream
/// </summary>
public decimal MilliSatsCollected { get; set; }
/// <summary>
/// Total seconds produced in HLS segments
/// </summary>
public decimal Length { get; set; }
public List<UserStreamGuest> Guests { get; init; } = new();
}