mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
2.1 KiB
78 lines
2.1 KiB
using ErsatzTV.Application.Watermarks; |
|
using ErsatzTV.Core.Domain; |
|
using ErsatzTV.FFmpeg.State; |
|
|
|
namespace ErsatzTV.ViewModels; |
|
|
|
public class WatermarkEditViewModel |
|
{ |
|
public WatermarkEditViewModel() |
|
{ |
|
} |
|
|
|
public WatermarkEditViewModel(WatermarkViewModel vm) |
|
{ |
|
Id = vm.Id; |
|
Name = vm.Name; |
|
Image = vm.Image; |
|
Mode = vm.Mode; |
|
ImageSource = vm.ImageSource; |
|
Location = vm.Location; |
|
Size = vm.Size; |
|
Width = vm.Width; |
|
HorizontalMargin = vm.HorizontalMargin; |
|
VerticalMargin = vm.VerticalMargin; |
|
FrequencyMinutes = vm.FrequencyMinutes; |
|
DurationSeconds = vm.DurationSeconds; |
|
Opacity = vm.Opacity; |
|
PlaceWithinSourceContent = vm.PlaceWithinSourceContent; |
|
} |
|
|
|
public int Id { get; set; } |
|
public string Name { get; set; } |
|
public string Image { get; set; } |
|
public ChannelWatermarkMode Mode { get; set; } |
|
public ChannelWatermarkImageSource ImageSource { get; set; } |
|
public WatermarkLocation Location { get; set; } |
|
public WatermarkSize Size { get; set; } |
|
public int Width { get; set; } |
|
public int HorizontalMargin { get; set; } |
|
public int VerticalMargin { get; set; } |
|
public int FrequencyMinutes { get; set; } |
|
public int DurationSeconds { get; set; } |
|
public int Opacity { get; set; } |
|
public bool PlaceWithinSourceContent { get; set; } |
|
|
|
public CreateWatermark ToCreate() => |
|
new( |
|
Name, |
|
Image, |
|
Mode, |
|
ImageSource, |
|
Location, |
|
Size, |
|
Width, |
|
HorizontalMargin, |
|
VerticalMargin, |
|
FrequencyMinutes, |
|
DurationSeconds, |
|
Opacity, |
|
PlaceWithinSourceContent); |
|
|
|
public UpdateWatermark ToUpdate() => |
|
new( |
|
Id, |
|
Name, |
|
Image, |
|
Mode, |
|
ImageSource, |
|
Location, |
|
Size, |
|
Width, |
|
HorizontalMargin, |
|
VerticalMargin, |
|
FrequencyMinutes, |
|
DurationSeconds, |
|
Opacity, |
|
PlaceWithinSourceContent); |
|
}
|
|
|