public class HololiveSchedule
{
public Guid Id { get; set; }
public DateTime StartDt { get; set; }
public string MemberName { get; set; } = null!;
public string StreamUrl { get; set; } = null!;
public string StreamTitle { get; set; } = null!;
public string? StreamImage { get; set; }
public string Md5 { get; set; } = null!;
}