mirror of
https://github.com/Readarr/Readarr
synced 2026-03-01 18:15:08 +01:00
Series Path joins root folder and folder
This commit is contained in:
parent
23acb3a9ae
commit
434e43f31a
1 changed files with 5 additions and 2 deletions
|
|
@ -50,8 +50,11 @@ public Series()
|
|||
public string Folder { get; set; }
|
||||
public LazyLoaded<RootFolder> RootFolder { get; set; }
|
||||
|
||||
//Todo: Store the root folder + folderName
|
||||
public string Path { get; set; }
|
||||
//Todo: Use this to auto link RootFolder and Folder (using the proper path separator)
|
||||
public string Path
|
||||
{
|
||||
get { return System.IO.Path.Combine(RootFolder.Value.Path, Folder); }
|
||||
}
|
||||
|
||||
//Todo: This should be a double since there are timezones that aren't on a full hour offset
|
||||
public int UtcOffset { get; set; }
|
||||
|
|
|
|||
Loading…
Reference in a new issue