-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGameMove.cs
More file actions
26 lines (23 loc) · 1.05 KB
/
GameMove.cs
File metadata and controls
26 lines (23 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//------------------------------------------------------------------------------
// <auto-generated>
// Этот код создан по шаблону.
//
// Изменения, вносимые в этот файл вручную, могут привести к непредвиденной работе приложения.
// Изменения, вносимые в этот файл вручную, будут перезаписаны при повторном создании кода.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Chess
{
using System;
using System.Collections.Generic;
public partial class GameMove
{
public long MoveID { get; set; }
public long NumberGame { get; set; }
public long NumberMove { get; set; }
public string GameMove1 { get; set; }
public Nullable<System.DateTime> TimeLeft { get; set; }
public string Comment { get; set; }
public virtual Game Game { get; set; }
}
}