sledgemapper/Sledgemapper.Api/Core/Entities/Snapshot.cs
Michele Scandura 7e3e645fc9
All checks were successful
continuous-integration/drone/push Build is passing
fixes and cleanup
2021-09-21 11:09:26 +01:00

21 lines
395 B
C#

using System;
using System.ComponentModel.DataAnnotations;
namespace Sledgemapper.Api.Core.Entities
{
public class Snapshot
{
[Key]
public int SnapshotId { get; set; }
[Required]
public Guid SessionId { get; set; }
[Required]
public string Object { get; set; }
[Required]
public double Timestamp { get; set; }
}
}