10 lines
No EOL
195 B
C#
10 lines
No EOL
195 B
C#
using System;
|
|
|
|
namespace DatabaseServer.Managers
|
|
{
|
|
internal record SaveRequest
|
|
{
|
|
public DateTime CreatedAt { get; init; }
|
|
public long CharacterId { get; init; }
|
|
}
|
|
} |