This repository has been archived by the owner on Nov 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
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
88829f8
commit 463bb93
Showing
36 changed files
with
696 additions
and
82 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,57 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
using System.Collections.Generic; | ||
|
||
namespace PcoBase | ||
{ | ||
public class Arrangement | ||
{ | ||
public int id { get; set; } | ||
|
||
public string name { get; set; } | ||
|
||
public object bpm { get; set; } | ||
|
||
public bool has_chords { get; set; } | ||
|
||
public bool has_chord_chart { get; set; } | ||
|
||
public int length { get; set; } | ||
|
||
public string sequence_to_s { get; set; } | ||
|
||
public string meter { get; set; } | ||
|
||
public int song_id { get; set; } | ||
|
||
public int update_by_id { get; set; } | ||
|
||
public int created_by_id { get; set; } | ||
|
||
public string updated_at { get; set; } | ||
|
||
public string created_at { get; set; } | ||
|
||
public string notes { get; set; } | ||
|
||
public int minutes { get; set; } | ||
|
||
public int seconds { get; set; } | ||
|
||
public string formatted_length { get; set; } | ||
|
||
public List<object> custom_zooms { get; set; } | ||
|
||
public string chord_chart { get; set; } | ||
|
||
public List<Attachment> attachments { get; set; } | ||
|
||
public string chord_chart_key { get; set; } | ||
|
||
public string chord_chart_font { get; set; } | ||
|
||
public int chord_chart_columns { get; set; } | ||
|
||
public int chord_chart_font_size { get; set; } | ||
|
||
public List<Property> properties { 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,41 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
using System.Collections.Generic; | ||
|
||
namespace PcoBase | ||
{ | ||
public class Attachment | ||
{ | ||
public string id { get; set; } | ||
|
||
public string url { get; set; } | ||
|
||
public bool allow_mp3_download { get; set; } | ||
|
||
public string content_type { get; set; } | ||
|
||
public string filename { get; set; } | ||
|
||
public bool downloadable { get; set; } | ||
|
||
public bool streamable { get; set; } | ||
|
||
public object comma_separated_page_order { get; set; } | ||
|
||
public string comma_separated_attachment_type_ids { get; set; } | ||
|
||
public string linked_object_type { get; set; } | ||
|
||
public int linked_object_id { get; set; } | ||
|
||
public double? offset_x { get; set; } | ||
|
||
public double? offset_y { get; set; } | ||
|
||
public double? zoom { get; set; } | ||
|
||
public List<object> custom_zooms { get; set; } | ||
|
||
public string secure_link { get; set; } | ||
|
||
public string updated_at { 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
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 |
---|---|---|
@@ -1,15 +1,13 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
|
||
namespace PcoBase | ||
namespace PcoBase | ||
{ | ||
public class ItemNote | ||
{ | ||
public int id { get; set; } | ||
|
||
public string note { get; set; } | ||
|
||
public int category_id { get; set; } | ||
|
||
public string category_name { 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,19 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
|
||
namespace PcoBase | ||
namespace PcoBase | ||
{ | ||
public class ItemTime | ||
{ | ||
public int id { get; set; } | ||
|
||
public int plan_item_id { get; set; } | ||
|
||
public int time_id { get; set; } | ||
|
||
public object live_start { get; set; } | ||
|
||
public object live_end { get; set; } | ||
|
||
public int plan_id { get; set; } | ||
|
||
public bool exclude { 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
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.