16 lines
No EOL
357 B
C#
16 lines
No EOL
357 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Geekbot.net.Database.Models
|
|
{
|
|
public class ShipsModel
|
|
{
|
|
[Key]
|
|
public int Id { get; set; }
|
|
|
|
public long FirstUserId { get; set; }
|
|
|
|
public long SecondUserId { get; set; }
|
|
|
|
public int Strength { get; set; }
|
|
}
|
|
} |