Added favorite softkey API
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user