Change BaseItemEntity ChannelId to nullable Guid

This commit is contained in:
Cody Robibero
2025-02-13 20:17:25 -07:00
parent b2a2fd6fcc
commit debc499711
6 changed files with 1624 additions and 8 deletions

View File

@@ -22,7 +22,7 @@ public class BaseItemEntity
public DateTime? EndDate { get; set; }
public string? ChannelId { get; set; }
public Guid? ChannelId { get; set; }
public bool IsMovie { get; set; }