15 lines
No EOL
322 B
C#
15 lines
No EOL
322 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Geekbot.net.Database.Models
|
|
{
|
|
public class UserSettingsModel
|
|
{
|
|
[Key]
|
|
public int Id { get; set; }
|
|
|
|
[Required]
|
|
public long UserId { get; set; }
|
|
|
|
// stuff to be added in the future
|
|
}
|
|
} |