Files
MariesWonderland/src/Models/Entities/EntityIUserThought.cs
2026-04-21 01:10:25 +10:00

17 lines
354 B
C#

using MariesWonderland.Models.Type;
namespace MariesWonderland.Models.Entities;
public class EntityIUserThought : IUserEntity
{
public long UserId { get; set; }
public string UserThoughtUuid { get; set; }
public int ThoughtId { get; set; }
public long AcquisitionDatetime { get; set; }
public long LatestVersion { get; set; }
}