mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-21 13:53:19 -07:00
Added unit tests
This commit is contained in:
parent
510e974283
commit
50f9348350
7 changed files with 244 additions and 42 deletions
|
@ -12,6 +12,7 @@ namespace PlexRequests.Store
|
|||
public RequestedModel()
|
||||
{
|
||||
RequestedUsers = new List<string>();
|
||||
Episodes = new List<EpisodesModel>();
|
||||
}
|
||||
|
||||
// ReSharper disable once IdentifierTypo
|
||||
|
@ -42,7 +43,7 @@ namespace PlexRequests.Store
|
|||
public string ArtistName { get; set; }
|
||||
public string ArtistId { get; set; }
|
||||
public int IssueId { get; set; }
|
||||
public EpisodesModel[] Episodes { get; set; }
|
||||
public List<EpisodesModel> Episodes { get; set; }
|
||||
|
||||
[JsonIgnore]
|
||||
public List<string> AllUsers
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue