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

15 lines
320 B
C#

using MariesWonderland.Models.Type;
namespace MariesWonderland.Models.Entities;
public class EntityIUserPartsGroupNote : IUserEntity
{
public long UserId { get; set; }
public int PartsGroupId { get; set; }
public long FirstAcquisitionDatetime { get; set; }
public long LatestVersion { get; set; }
}