mirror of https://github.com/ErsatzTV/ErsatzTV.git
1223 changed files with 5193 additions and 5253 deletions
@ -1,3 +1,3 @@
@@ -1,3 +1,3 @@
|
||||
namespace ErsatzTV.Application.Artists; |
||||
|
||||
public record GetArtistById(int ArtistId) : IRequest<Option<ArtistViewModel>>; |
||||
public record GetArtistById(int ArtistId) : IRequest<Option<ArtistViewModel>>; |
||||
|
@ -1,3 +1,3 @@
@@ -1,3 +1,3 @@
|
||||
namespace ErsatzTV.Application.Channels; |
||||
|
||||
public record CreateChannelResult(int ChannelId) : EntityIdResult(ChannelId); |
||||
public record CreateChannelResult(int ChannelId) : EntityIdResult(ChannelId); |
||||
|
@ -1,3 +1,3 @@
@@ -1,3 +1,3 @@
|
||||
namespace ErsatzTV.Application.Channels; |
||||
|
||||
public record GetAllChannels : IRequest<List<ChannelViewModel>>; |
||||
public record GetAllChannels : IRequest<List<ChannelViewModel>>; |
||||
|
@ -1,3 +1,3 @@
@@ -1,3 +1,3 @@
|
||||
namespace ErsatzTV.Application.Channels; |
||||
|
||||
public record GetChannelById(int Id) : IRequest<Option<ChannelViewModel>>; |
||||
public record GetChannelById(int Id) : IRequest<Option<ChannelViewModel>>; |
||||
|
@ -1,3 +1,3 @@
@@ -1,3 +1,3 @@
|
||||
namespace ErsatzTV.Application.Configuration; |
||||
|
||||
public record ConfigElementViewModel(string Key, string Value); |
||||
public record ConfigElementViewModel(string Key, string Value); |
||||
|
@ -1,3 +1,3 @@
@@ -1,3 +1,3 @@
|
||||
namespace ErsatzTV.Application.Configuration; |
||||
|
||||
public record GetLibraryRefreshInterval : IRequest<int>; |
||||
public record GetLibraryRefreshInterval : IRequest<int>; |
||||
|
@ -1,3 +1,3 @@
@@ -1,3 +1,3 @@
|
||||
namespace ErsatzTV.Application.Configuration; |
||||
|
||||
public record GetPlayoutDaysToBuild : IRequest<int>; |
||||
public record GetPlayoutDaysToBuild : IRequest<int>; |
||||
|
@ -1,3 +1,3 @@
@@ -1,3 +1,3 @@
|
||||
namespace ErsatzTV.Application.Emby; |
||||
|
||||
public record EmbyConnectionParametersViewModel(string Address); |
||||
public record EmbyConnectionParametersViewModel(string Address); |
||||
|
@ -1,3 +1,3 @@
@@ -1,3 +1,3 @@
|
||||
namespace ErsatzTV.Application.Emby; |
||||
|
||||
public record EmbyPathReplacementViewModel(int Id, string EmbyPath, string LocalPath); |
||||
public record EmbyPathReplacementViewModel(int Id, string EmbyPath, string LocalPath); |
||||
|
@ -1,3 +1,3 @@
@@ -1,3 +1,3 @@
|
||||
namespace ErsatzTV.Application.Emby; |
||||
|
||||
public record GetAllEmbyMediaSources : IRequest<List<EmbyMediaSourceViewModel>>; |
||||
public record GetAllEmbyMediaSources : IRequest<List<EmbyMediaSourceViewModel>>; |
||||
|
@ -1,3 +1,3 @@
@@ -1,3 +1,3 @@
|
||||
namespace ErsatzTV.Application.Emby; |
||||
|
||||
public record GetEmbyLibrariesBySourceId(int EmbyMediaSourceId) : IRequest<List<EmbyLibraryViewModel>>; |
||||
public record GetEmbyLibrariesBySourceId(int EmbyMediaSourceId) : IRequest<List<EmbyLibraryViewModel>>; |
||||
|
@ -1,3 +1,3 @@
@@ -1,3 +1,3 @@
|
||||
namespace ErsatzTV.Application.Emby; |
||||
|
||||
public record GetEmbyMediaSourceById(int EmbyMediaSourceId) : IRequest<Option<EmbyMediaSourceViewModel>>; |
||||
public record GetEmbyMediaSourceById(int EmbyMediaSourceId) : IRequest<Option<EmbyMediaSourceViewModel>>; |
||||
|
@ -1,4 +1,4 @@
@@ -1,4 +1,4 @@
|
||||
namespace ErsatzTV.Application.Emby; |
||||
|
||||
public record GetEmbyPathReplacementsBySourceId |
||||
(int EmbyMediaSourceId) : IRequest<List<EmbyPathReplacementViewModel>>; |
||||
(int EmbyMediaSourceId) : IRequest<List<EmbyPathReplacementViewModel>>; |
||||
|
@ -1,3 +1,3 @@
@@ -1,3 +1,3 @@
|
||||
namespace ErsatzTV.Application; |
||||
|
||||
public record EntityIdResult(int Id); |
||||
public record EntityIdResult(int Id); |
||||
|
@ -1,3 +1,3 @@
@@ -1,3 +1,3 @@
|
||||
namespace ErsatzTV.Application.FFmpegProfiles; |
||||
|
||||
public record CreateFFmpegProfileResult(int FFmpegProfileId) : EntityIdResult(FFmpegProfileId); |
||||
public record CreateFFmpegProfileResult(int FFmpegProfileId) : EntityIdResult(FFmpegProfileId); |
||||
|
@ -1,3 +1,3 @@
@@ -1,3 +1,3 @@
|
||||
namespace ErsatzTV.Application.FFmpegProfiles; |
||||
|
||||
public record UpdateFFmpegProfileResult(int FFmpegProfileId) : EntityIdResult(FFmpegProfileId); |
||||
public record UpdateFFmpegProfileResult(int FFmpegProfileId) : EntityIdResult(FFmpegProfileId); |
||||
|
@ -1,3 +1,3 @@
@@ -1,3 +1,3 @@
|
||||
namespace ErsatzTV.Application.FFmpegProfiles; |
||||
|
||||
public record GetAllFFmpegProfiles : IRequest<List<FFmpegProfileViewModel>>; |
||||
public record GetAllFFmpegProfiles : IRequest<List<FFmpegProfileViewModel>>; |
||||
|
@ -1,3 +1,3 @@
@@ -1,3 +1,3 @@
|
||||
namespace ErsatzTV.Application.FFmpegProfiles; |
||||
|
||||
public record GetFFmpegProfileById(int Id) : IRequest<Option<FFmpegProfileViewModel>>; |
||||
public record GetFFmpegProfileById(int Id) : IRequest<Option<FFmpegProfileViewModel>>; |
||||
|
@ -1,3 +1,3 @@
@@ -1,3 +1,3 @@
|
||||
namespace ErsatzTV.Application.FFmpegProfiles; |
||||
|
||||
public record GetFFmpegSettings : IRequest<FFmpegSettingsViewModel>; |
||||
public record GetFFmpegSettings : IRequest<FFmpegSettingsViewModel>; |
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue