zeroframework/Services/DeviceCenter/ZeroFramework.DeviceCenter.Infrastructure/Idempotency/ClientRequest.cs
2023-12-05 17:22:48 +08:00

15 lines
324 B
C#

using System.Diagnostics.CodeAnalysis;
namespace ZeroFramework.DeviceCenter.Infrastructure.Idempotency
{
public class ClientRequest
{
[AllowNull]
public string Id { get; set; }
[AllowNull]
public string Name { get; set; }
public DateTimeOffset Time { get; set; }
}
}