tsk-76: Added model and context for AccessLevel

This commit is contained in:
phoenix
2025-03-07 21:54:44 -05:00
parent 9d90247bf8
commit 16eec3e9e2
3 changed files with 40 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
using System.ComponentModel.DataAnnotations.Schema;
namespace Icarus.Models;
public class AccessLevel {
#region Properties
[Newtonsoft.Json.JsonProperty("id")]
public int Id { get; set; }
[Newtonsoft.Json.JsonProperty("level")]
public string Level { get; set; }
[Newtonsoft.Json.JsonProperty("song_id")]
public int SongId { get; set; }
#endregion
}