Added favorite softkey API

This commit is contained in:
Lucio Maranta
2018-07-12 11:41:37 +02:00
parent 1d2be186bf
commit 7e9d0dfe97
10 changed files with 164 additions and 7 deletions
@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Step.Model.DatabaseModels
{
[Table("favorite_user_softkey")]
public class FavoriteUserSoftkeyModel
{
[Key, Column("user_softkey_id", Order = 0)]
public int SoftkeyId { get; set; }
[Key, Column("user_id", Order = 1)]
public int UserId { get; set; }
}
}