-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1b3ff1f
commit 31cf057
Showing
14 changed files
with
178 additions
and
274 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
//This file is part of AudioCuesheetEditor. | ||
|
||
//AudioCuesheetEditor is free software: you can redistribute it and/or modify | ||
//it under the terms of the GNU General Public License as published by | ||
//the Free Software Foundation, either version 3 of the License, or | ||
//(at your option) any later version. | ||
|
||
//AudioCuesheetEditor is distributed in the hope that it will be useful, | ||
//but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
//MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
//GNU General Public License for more details. | ||
|
||
//You should have received a copy of the GNU General Public License | ||
//along with Foobar. If not, see | ||
//<http: //www.gnu.org/licenses />. | ||
|
||
using AudioCuesheetEditor.Model.AudioCuesheet.Import; | ||
|
||
namespace AudioCuesheetEditor.Model.AudioCuesheet | ||
{ | ||
public interface ICuesheet | ||
{ | ||
public String? Artist { get; set; } | ||
public String? Title { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
//This file is part of AudioCuesheetEditor. | ||
|
||
//AudioCuesheetEditor is free software: you can redistribute it and/or modify | ||
//it under the terms of the GNU General Public License as published by | ||
//the Free Software Foundation, either version 3 of the License, or | ||
//(at your option) any later version. | ||
|
||
//AudioCuesheetEditor is distributed in the hope that it will be useful, | ||
//but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
//MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
//GNU General Public License for more details. | ||
|
||
//You should have received a copy of the GNU General Public License | ||
//along with Foobar. If not, see | ||
//<http: //www.gnu.org/licenses />. | ||
namespace AudioCuesheetEditor.Model.AudioCuesheet | ||
{ | ||
public interface ITrack | ||
{ | ||
public string? Artist { get; set; } | ||
public string? Title { get; set; } | ||
public uint? Position { get; set; } | ||
public TimeSpan? Begin { get; set; } | ||
public TimeSpan? End { get; set; } | ||
public TimeSpan? Length { get; set; } | ||
//TODO: Flags | ||
public TimeSpan? PreGap { get; set; } | ||
public TimeSpan? PostGap { get; set; } | ||
} | ||
} |
28 changes: 28 additions & 0 deletions
28
AudioCuesheetEditor/Model/AudioCuesheet/Import/ImportCuesheet.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
//This file is part of AudioCuesheetEditor. | ||
|
||
//AudioCuesheetEditor is free software: you can redistribute it and/or modify | ||
//it under the terms of the GNU General Public License as published by | ||
//the Free Software Foundation, either version 3 of the License, or | ||
//(at your option) any later version. | ||
|
||
//AudioCuesheetEditor is distributed in the hope that it will be useful, | ||
//but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
//MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
//GNU General Public License for more details. | ||
|
||
//You should have received a copy of the GNU General Public License | ||
//along with Foobar. If not, see | ||
//<http: //www.gnu.org/licenses />. | ||
|
||
namespace AudioCuesheetEditor.Model.AudioCuesheet.Import | ||
{ | ||
public class ImportCuesheet : ICuesheet | ||
{ | ||
public string? Artist { get; set; } | ||
public string? Title { get; set; } | ||
//TODO Audiofile | ||
//TODO CDTextfile | ||
public string? Cataloguenumber { get; set; } | ||
public ICollection<ImportTrack> Tracks { get; set; } = []; | ||
} | ||
} |
31 changes: 31 additions & 0 deletions
31
AudioCuesheetEditor/Model/AudioCuesheet/Import/ImportTrack.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
//This file is part of AudioCuesheetEditor. | ||
|
||
//AudioCuesheetEditor is free software: you can redistribute it and/or modify | ||
//it under the terms of the GNU General Public License as published by | ||
//the Free Software Foundation, either version 3 of the License, or | ||
//(at your option) any later version. | ||
|
||
//AudioCuesheetEditor is distributed in the hope that it will be useful, | ||
//but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
//MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
//GNU General Public License for more details. | ||
|
||
//You should have received a copy of the GNU General Public License | ||
//along with Foobar. If not, see | ||
//<http: //www.gnu.org/licenses />. | ||
|
||
namespace AudioCuesheetEditor.Model.AudioCuesheet.Import | ||
{ | ||
public class ImportTrack : ITrack | ||
{ | ||
public string? Artist { get; set; } | ||
public string? Title { get; set; } | ||
public uint? Position { get; set; } | ||
public TimeSpan? Begin { get; set; } | ||
public TimeSpan? End { get; set; } | ||
public TimeSpan? Length { get; set; } | ||
//TODO: Flags | ||
public TimeSpan? PreGap { get; set; } | ||
public TimeSpan? PostGap { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.