2018-05-10 02:00:26 +02:00
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
|
|
|
|
namespace Geekbot.net.Database.Models
|
2018-05-10 00:00:51 +02:00
|
|
|
|
{
|
|
|
|
|
public class ShipsModel
|
|
|
|
|
{
|
2018-05-10 02:00:26 +02:00
|
|
|
|
[Key]
|
|
|
|
|
public int Id { get; set; }
|
2018-05-10 00:00:51 +02:00
|
|
|
|
|
2018-05-10 02:00:26 +02:00
|
|
|
|
public long FirstUserId { get; set; }
|
|
|
|
|
|
|
|
|
|
public long SecondUserId { get; set; }
|
|
|
|
|
|
|
|
|
|
public int Strength { get; set; }
|
2018-05-10 00:00:51 +02:00
|
|
|
|
}
|
|
|
|
|
}
|