Skip to content

Commit

Permalink
[Domain] Added new dtos
Browse files Browse the repository at this point in the history
  • Loading branch information
Wolfteam committed Nov 24, 2021
1 parent d0c7726 commit 69a5e63
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
8 changes: 8 additions & 0 deletions CastIt.Domain/Dtos/Requests/PlayFileFromNameRequestDto.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
namespace CastIt.Domain.Dtos.Requests
{
public class PlayFileFromNameRequestDto
{
public string Filename { get; set; }
public bool Force { get; set; }
}
}
9 changes: 9 additions & 0 deletions CastIt.Domain/Dtos/Requests/SetMultiFileOptionsRequestDto.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
namespace CastIt.Domain.Dtos.Requests
{
public class SetMultiFileOptionsRequestDto
{
public int AudioStreamIndex { get; set; }
public int SubtitleStreamIndex { get; set; }
public int Quality { get; set; }
}
}

0 comments on commit 69a5e63

Please sign in to comment.