server-master/srcs/WingsAPI.Communication/DbServer/TimeSpaceService/TimeSpaceIsNewRecordResponse.cs
2026-02-10 18:21:30 +01:00

11 lines
No EOL
232 B
C#

using ProtoBuf;
namespace WingsAPI.Communication.DbServer.TimeSpaceService
{
[ProtoContract]
public class TimeSpaceIsNewRecordResponse
{
[ProtoMember(1)]
public bool IsNewRecord { get; init; }
}
}