add watermarks and graphics elements to block items (#2424)

This commit is contained in:
Jason Dove
2025-09-16 02:39:25 +00:00
committed by GitHub
parent d855e4f20d
commit 9aa7c44388
22 changed files with 13791 additions and 11 deletions
@@ -1,7 +1,9 @@
using System.ComponentModel;
using System.Runtime.CompilerServices;
using ErsatzTV.Application.Graphics;
using ErsatzTV.Application.MediaCollections;
using ErsatzTV.Application.MediaItems;
using ErsatzTV.Application.Watermarks;
using ErsatzTV.Core.Domain;
namespace ErsatzTV.ViewModels;
@@ -62,6 +64,10 @@ public class BlockItemEditViewModel : INotifyPropertyChanged
public bool DisableWatermarks { get; set; }
public IEnumerable<WatermarkViewModel> Watermarks { get; set; }
public IEnumerable<GraphicsElementViewModel> GraphicsElements { get; set; }
public event PropertyChangedEventHandler PropertyChanged;
protected virtual void OnPropertyChanged([CallerMemberName] string propertyName = null) =>