creating oData client
testing odata interface
This commit is contained in:
17
API/Models/Song.cs
Normal file
17
API/Models/Song.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace API.Models {
|
||||
public class Song {
|
||||
public int ID { get; set; }
|
||||
public string Name { get; set; }
|
||||
public string Text { get; set; }
|
||||
public string Comments { get; set; }
|
||||
public string Key { get; set; }
|
||||
public int? Tempo { get; set; }
|
||||
public SongType SongType { get; set; }
|
||||
|
||||
public bool Final { get; set; }
|
||||
|
||||
public virtual ICollection<Change> Changes { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user