Files
Kg.SeaTime/Service/Application.Domain.Entity/view/GiftLogView.cs
2026-07-11 18:52:38 +08:00

11 lines
297 B
C#

namespace Application.Domain.Entity;
public class GiftLogView
{
public UserModel user { get; set; }
public UserModel from { get; set; }
public string name { get; set; }
public string img { get; set; }
public int count { get; set; }
public DateTime? time { get; set; }
}