Files
wgenerator/API/Models/Song.cs
Benjamin Ifland bbe9f33571 creating oData client
testing odata interface
2019-03-17 17:32:25 +01:00

17 lines
489 B
C#

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; }
}
}