Fix link generator to allow optional name
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-11-30 13:13:23 +01:00
parent c28537e25c
commit 02e33d046d
3 changed files with 5 additions and 3 deletions

View File

@@ -5,7 +5,7 @@ namespace CinemaLib.API;
public class Stream
{
public string _id {get; set;}
public string name {get;set;}
public string? name {get;set;}
public string media {get;set;}
public string provider {get;set;}
public DateTime? date_added {get;set;}