mirror of
https://github.com/thebreaddev/Supercell.GUT.git
synced 2024-11-13 00:54:37 +00:00
9 lines
171 B
C#
9 lines
171 B
C#
|
using Supercell.GUT.Titan.Logic.Math;
|
|||
|
|
|||
|
namespace Supercell.GUT.Server.Database.Document;
|
|||
|
|
|||
|
public interface IDatabaseDocument
|
|||
|
{
|
|||
|
LogicLong DocumentId { get; set; }
|
|||
|
}
|